Letter generation logic was overly complex. Instead of generating every possible combination of tiles and checking it against the word dictionary, flip the script. Iterate over the dictionary and check if the word can be made. Gets rid of a lot of complexity and speeds things up quite a bit
Fixes #100.
Letter generation logic was overly complex. Instead of generating every possible combination of tiles and checking it against the word dictionary, flip the script. Iterate over the dictionary and check if the word can be made. Gets rid of a lot of complexity and speeds things up quite a bit