Skip to content

Instantly share code, notes, and snippets.

@skrat
Created June 17, 2015 16:02
Show Gist options
  • Save skrat/19071d76eb873905dc24 to your computer and use it in GitHub Desktop.
Save skrat/19071d76eb873905dc24 to your computer and use it in GitHub Desktop.
(let [n nil fizz (cycle [n n "fizz"]) buzz (cycle [n n n n "buzz"]) nums (iterate inc 1)]
(take 20 (map #(if (or %1 %2) (str %1 %2) %3) fizz buzz nums)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment