Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Created June 8, 2014 19:48
Show Gist options
  • Save trikitrok/b8b4641785030df3299b to your computer and use it in GitHub Desktop.
Save trikitrok/b8b4641785030df3299b to your computer and use it in GitHub Desktop.
(defn fizz-buzz [coll]
(clojure.string/join
\space
(map #(let [s (str %2 %3) ]
(if (seq s)
s
(str %)))
coll
(cycle [ "" "" "Fizz" ])
(cycle [ "" "" "" "" "Buzz" ]))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment