A small app written in Rust to solve wordle puzzles, like Wordguessr or the original of NYT.
There is currently no binary and the app is only tested on Windows. To run the app use:
cargo runThe app suggests some starting words, but you can of course choose your own.
To filter the word list, just type any character. The following filters are supported:
- Character at position x must be c. Example: press
1+ato filter for words starting with 'a'. - Character at position x must NOT be c. Example: press
3-xto exclude all words with an 'x' in the middle. - Word must contain character. Example: press
esc,+yto only show words containing a 'y'. - Word must NOT contain character. Example: press
esc,-wto exclude all words containing a 'w'.
The 'must contain' filter can contain the same character multiple times, so you can filter for 'tt' and get 'butts' etc.
Less frequent words in the result list are displayed greyed out.
Start the application when starting the puzzle.
For each round, enter one of the words presented.
- for green characters, add a filter 'in position x char must be c'
- for yellow characters, add a filter 'in position x char must NOT be c'
- a 'word must contain' filter is automatically added
- for black characters, add a filter 'word must NOT contain'
This will result in a shorter list of words being displayed. Rare words are displayed greyed out and should be chosen after more frequent words. Repeat.
Note: Watch out for black characters that also have a green match - these must not be added to the filter. I might fix this issue at some time.
This is a generic solver that contains (a lot) more words that the original NYT wordle solution list. You can of course supply your own list of solutions. The solver also does not remove past solutions from the filtered list.
That said, you still should be able to solve almost any wordle puzzle, even if your active vocabulary does not contain words like 'parer'.