Skip to content

Instantly share code, notes, and snippets.

@eprislac
Created February 22, 2019 08:15
Show Gist options
  • Save eprislac/2a619ca26a8d5f1667a9157c5b3b54e4 to your computer and use it in GitHub Desktop.
Save eprislac/2a619ca26a8d5f1667a9157c5b3b54e4 to your computer and use it in GitHub Desktop.
(defn fizzbuzziness [num]
  (def tbl {"Fizz" (mod num 3),"Buzz" (mod num 5)})
  (clojure.string/join "" (filter (comp #{0} tbl) (keys tbl))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment