Skip to content

Instantly share code, notes, and snippets.

@orb
Created November 14, 2014 05:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orb/80303c711ff2eb6a1a37 to your computer and use it in GitHub Desktop.
Save orb/80303c711ff2eb6a1a37 to your computer and use it in GitHub Desktop.
is or a conditional?
;; http://gigasquidsoftware.com/blog/2014/11/13/clojure-fizzbuzz-without-conditionals
(defn fb [n]
(or (->> (map #(str %1 %2)
(cycle [nil nil "fizz"]) (cycle [nil nil nil nil "buzz"]))
(take n)
last
not-empty)
n))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment