Update wordlist#49
Conversation
…st from Aspell which is appropriate for word games.
|
this can't be merged, the word list is sorted alphabetically, currently the game moves the array index +1 every day, so if the array is sorted it will always be pretty similar words every day, it needs to be shuffled or the game needs to be improved with some algorithm that doesn't change array index incrementally but in a more sparse way (but still ensuring all words are selected eventually) the easier solution would be to use a python or node script to load the list, randomly sort it and save it back and propose that word list then in this PR also I am afraid this is a change that needs more careful thinking, I would go first comparing both wordlist and removing the duplicates and then only add the extra words, analyzing if they make sense, and in case of removing words from the existing dict also do it more on-point, not just swapping the two dicts which doesn't warrant me that the new one is better |
|
I removed some weird words in #52 |
|
this is the words that are in the proposed wordlist that are not in the existing list: |
This updates the wordlist using 5-letter words in the
2of12int.txtlist from Aspell which is appropriate for word games.#47