Rafael Calpena
rafaelcalpena.bsky.social
Rafael Calpena
@rafaelcalpena.bsky.social
Front-end developer and founder of @stackomate.com
Thank you for publishing on a GitHub repository, I will adjust the script for the original list.
May 25, 2025 at 11:00 PM
I will also try to implement the "most similar word" strategy you suggested and will report the results here once I get a chance. Also, if you don't mind, could you share with me the word list you're using in the game? I appreciate the help, thanks.
May 25, 2025 at 2:02 PM
So far it seems the least common letters strategy works best when there are only a few similar words left. In the beginning of the game, the most common letters strategy seems more efficient. Random guesses on average work great too.
May 25, 2025 at 2:02 PM
Thanks a lot for the valuable insights, I have been implementing some different modes:

- least common letters - e.g.: first guess is "jumpy", good for reducing remaining available letters.
- most common letters - e.g.: first guess is "arise"
- random words - same strategy from the video I posted
May 25, 2025 at 2:02 PM
Also, Is there an official word list for the game? I'm using a different dictionary, and not all words are accepted.
May 24, 2025 at 5:12 PM
Now I’ve got a bunch of questions to improve it:

- What’s the best heuristic for picking the next guess? Random? Words with the most common letters? Least common?

- Could a lookahead strategy reduce the number of guesses? Might be too performance-heavy, but worth exploring.
May 24, 2025 at 5:10 PM