-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Overlapping Words #23
Comments
Looking at the wordlist generator, there is definitely nothing stopping the same word from showing up in a problem. But also, there is a shortcut that marks wordles as solved if you correctly guessed a green in all 5 columns of the wordle, I think that is where most of these solutions are coming from. Another thing to note, there are only about 2000 words in the master word list. So across all days, each individual word will show up in a significant fraction of them if 1000 are being picked each time. Personally, I've noticed "crass" showing up several times. |
It's not too difficult to implement a wordlist generator without duplicates. For example, the Durstenfeld variant of the Fisher-Yates shuffle lets you efficiently and uniformly shuffle an array in-place, and it can be pretty easily modified to pick k elements (just stop the shuffle early and take the results so far) |
pretty sure this is just #11 |
Multiple wordle panels can have the same word.
As the image shows, I have covered 704 words with only 69 guesses, and multiple words are getting completed for each word I type. Avoiding this would make for a longer game that actually requires at least 1000 guesses, as the name makes one presume.
The text was updated successfully, but these errors were encountered: