Created
May 7, 2015 16:46
-
-
Save yogthos/f432e5ba0bb9d70dc479 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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