Skip to content
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

Open
nirur opened this issue Apr 20, 2022 · 3 comments
Open

Overlapping Words #23

nirur opened this issue Apr 20, 2022 · 3 comments

Comments

@nirur
Copy link

nirur commented Apr 20, 2022

Multiple wordle panels can have the same word.

Screenshot from 2022-04-20 11-25-13

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.

@agausmann
Copy link
Contributor

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.

@agausmann
Copy link
Contributor

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)

@briaguya-ai
Copy link

pretty sure this is just #11

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants