Created
December 9, 2015 13:24
-
-
Save jlmferreira/a1945828c23f8ac9686d to your computer and use it in GitHub Desktop.
Gera uma lista randomica de letras para caca palavras em uma matriz 10 x 10
This file contains 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
(flatten (repeatedly (* 10 10) | |
(partial rand-nth | |
["a" "b" "c" "d" | |
"e" "f" "g" "h" | |
"i" "j" "k" "l" | |
"m" "n" "o" "p" | |
"q" "r" "s" "t" | |
"u" "v" "x" "y" | |
"w" "z"]))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment