Skip to content

Instantly share code, notes, and snippets.

@yujihamaguchi
Created July 19, 2014 12:42
Show Gist options
  • Save yujihamaguchi/11b3a5f0dbc0ff087875 to your computer and use it in GitHub Desktop.
Save yujihamaguchi/11b3a5f0dbc0ff087875 to your computer and use it in GitHub Desktop.
fizzbuzz using condp
(defn fizzbuzz [x]
(condp #(= (mod %2 %1) 0) x
15 "FizzBuzz"
3 "Fizz"
5 "Buzz"
x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment