Skip to content

Instantly share code, notes, and snippets.

@emdeesee
Created January 29, 2013 18:50
Show Gist options
  • Save emdeesee/4666580 to your computer and use it in GitHub Desktop.
Save emdeesee/4666580 to your computer and use it in GitHub Desktop.
FizzBuzz vs. Clojure
(map #(let [s (str %2 %3)] (if (seq s) s %)) (range 1 101) (cycle ["" "" "Fizz"]) (cycle ["" "" "" "" "Buzz"]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment