MENU

Wordle Bot

Repository

A high-performance Wordle CLI with included solver. Analyze letter frequencies, simulate weighted strategies, and optimize the solver with a customizable heuristic engine.

Main Solver Loop

This is the main loop inside the solver program. It asks you for the word you picked and prompts you to enter your pattern for the letters (c: correct letter, m: misplaced letter, w: wrong letter) before moving on to the filtering and ranking process. After that, the top 10 best-ranking words get printed out to the terminal.

Filtering the Words

Filtering the words is the core part of the Wordle solver. This is a snippet from my "filter.rs" script. It works by filtering out the words that, for example, don't contain the letters given by the first try.

Playing Wordle

With this program, you can directly play Wordle inside your terminal as well! This snippet prints a summary of your current game with the famous Wordle keyboard as well.

Try It Out

Download

To run the bot from your terminal (Command Prompt or PowerShell), navigate to the folder where you downloaded the file and type: wordle-bot.exe