Skip to content

Instantly share code, notes, and snippets.

@xfsnowind
Last active August 29, 2015 14:26
Show Gist options
  • Save xfsnowind/11e05076a10e391458e7 to your computer and use it in GitHub Desktop.
Save xfsnowind/11e05076a10e391458e7 to your computer and use it in GitHub Desktop.
BuzzFizz implementation from [Kjetil](https://github.com/kthu) with Clojure
(take 100 (map #(let [s (str %2 %3) ] (if (seq s) s (inc %)) )
(range)
(cycle [ "" "" "Fizz" ])
(cycle [ "" "" "" "" "Buzz" ])))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment