Skip to content

Instantly share code, notes, and snippets.

View alex-luminal's full-sized avatar

Alex Schoof alex-luminal

View GitHub Profile

Keybase proof

I hereby claim:

  • I am alex-luminal on github.
  • I am fugue_alex (https://keybase.io/fugue_alex) on keybase.
  • I have a public key ASCMD7Ph3O7RMFhTzb_O0wAIOoZSPQ2gulgt02zgF7Ci_Qo

To claim this, I am signing this object:

(ns clojure-interview.core
(:gen-class))
(def fizzbuzz-seq
(map (fn [x] (cond
(= 0 (mod x 15)) "fizzbuzz"
(= 0 (mod x 3)) "fizz"
(= 0 (mod x 5)) "buzz"
:else x))
(iterate inc 1)))