Skip to content

Instantly share code, notes, and snippets.

@buchgr
Created October 29, 2012 21:18
Show Gist options
  • Save buchgr/3976603 to your computer and use it in GitHub Desktop.
Save buchgr/3976603 to your computer and use it in GitHub Desktop.
wordsOfLength :: [Char] -> Integer -> [[Char]]
wordsOfLength alphabet n | n <= 0 = [""]
| otherwise = [a:b | a <- alphabet, b <- wordsOfLength alphabet (n-1)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment