|
|
|
|
|
by vple
1611 days ago
|
|
I also wrote a tool for playing:
https://github.com/vple/wordle-solver/blob/main/solver.js There's probably more tuning I can do for the algo, but roughly: - I took all the words from the site's js as the dictionary. - From remaining eligible words, compute the letter distribution (ignoring letters you already know are in the solution). - Pick a word that uses as many of the most frequent letters as possible. - Use one of those as a guess. The goal is essentially to greedily reduce the remaining candidate words as much as possible per guess. |
|
I do wonder if looking at how a letter splits the space of letters and words would be interesting