Skip to content

Instantly share code, notes, and snippets.

@MichaelDrogalis
Created November 19, 2014 17:43
Show Gist options
  • Save MichaelDrogalis/f05f2c154b6210e184fe to your computer and use it in GitHub Desktop.
Save MichaelDrogalis/f05f2c154b6210e184fe to your computer and use it in GitHub Desktop.
(map #(nth (conj (cycle [% % "Fizz" % "Buzz" "Fizz" % % % "Buzz" % "Fizz" % % "FizzBuzz"]) %) %) (range 1 101))
;; => (1 2 "Fizz" 4 "Buzz" "Fizz" 7 8 9 "Buzz" 11 "Fizz" 13 14 "FizzBuzz" ...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment