Skip to content

Instantly share code, notes, and snippets.

@ponkore
Created March 26, 2012 04:23
Show Gist options
  • Save ponkore/2202913 to your computer and use it in GitHub Desktop.
Save ponkore/2202913 to your computer and use it in GitHub Desktop.
FizzBuzz in Clojure
;; FizzBuzz in Clojure
(defn fizzbuzz [max]
(map (fn [n]
(cond
(= (mod n 15) 0) "FizzBuzz"
(= (mod n 3) 0) "Fizz"
(= (mod n 5) 0) "Buzz"
:else n))
(take max (iterate inc 1))))
;; 冗長すぎる orz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment