WordleSolver is a simple Wordle solution finder. It will often find the solution in only 4 guesses.
The file "wordle.py" must be edited and run to give results.
The program will print a list of the top 300 words that it thinks you should guess next.
To tell it what letters to exclude, edit line 28 and fill the array with any letters that are gray in Wordle.
Example : exclude=[a,b,c]
To tell it what letters are yellow, edit line 29 and fill the array with any letters that are yellow followed by the INDEX of where it is.
Example : yellow=[a,2,b,1,c,0]
To tell it what letters are green, edit line 30 and replace any zero with the letter that should go there.
Example : green=[0,a,0,b,c]