Skip to content

Instantly share code, notes, and snippets.

@viebel
Last active November 9, 2020 09:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viebel/564b99b1365d1966342ad0a0977b94b3 to your computer and use it in GitHub Desktop.
Save viebel/564b99b1365d1966342ad0a0977b94b3 to your computer and use it in GitHub Desktop.
(defn fizzbuzz-clean [n]
(let [fizzes (cycle ["" "" "Fizz"])
buzzes (cycle ["" "" "" "" "Buzz"])
words (map str fizzes buzzes)
numbers (map str (rest (range)))]
(take n (map choice words numbers))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment