Skip to content

Instantly share code, notes, and snippets.

@jlmferreira
Created December 9, 2015 13:24
Show Gist options
  • Save jlmferreira/a1945828c23f8ac9686d to your computer and use it in GitHub Desktop.
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
(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