A program which tries to solve Wordle puzzles efficiently.
Note: Since the New York Times seems to be making changes to the Wordle dictionary, I probably won't be maintaining this any further, so it may not always work in future.
Some Wordle alternatives which still use the old dictionary (at time of writing 07/03/22):
Run python3 src/main.py
.
This will provide you with a reasonable first guess1 and then ask you to input the colours of the tiles once your guess has been made. It will then provide its best guess at the word based upon letter frequencies of possible answers using the information it has from your previous guesses.
1 This solver is stubborn - it won't use any word as a guess which is not a valid answer. Technically, there are better first guesses.
Do what you want with it.