Skip to content

Instantly share code, notes, and snippets.

@yogthos
Created May 7, 2015 16:46
Show Gist options
  • Save yogthos/f432e5ba0bb9d70dc479 to your computer and use it in GitHub Desktop.
Save yogthos/f432e5ba0bb9d70dc479 to your computer and use it in GitHub Desktop.
(defn gen-name [k l]
(loop [n #(mod (* 399 %) 509)
r (nth "BDGKPNTVZ" (mod (n k) 9))
k k
i 0]
(if (< i l)
(recur n
(str r (-> ["aeiouaeio" "bdgknptvwz"] (nth (bit-and i 1)) (nth (mod (n k) 9))))
(n k)
(inc i))
r)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment