Skip to content

Instantly share code, notes, and snippets.

@giampierod
Last active August 29, 2015 14:11
Show Gist options
  • Save giampierod/28398e7031e14165c0ac to your computer and use it in GitHub Desktop.
Save giampierod/28398e7031e14165c0ac to your computer and use it in GitHub Desktop.
(defn fizzbuzz [n]
(map #(get [:fizzbuzz] (rem % 15)
(get [:fizz] (rem % 3)
(get [:buzz] (rem % 5) %)))
(range 0 n)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment