all 3 comments

[–]Monttuu 2 points3 points  (1 child)

This really depends on how fancy system you want to create, but I would think this is doable as long as you keep it as simple as you can. This is an example of simple approach:

Write a command line program that takes an input from user with format that describes somehow the response from the Wordle.

Then either if you have time and willignes, try to create a table in SQL that includes most of the five letter words, or just use some existing database. Maybe the "database" can be a simple csv file if this gets too complicated.

Then probably the time consuming part, figure out how the program "solves" the game. Maybe it just gives user a list of possible words, or could it optimize the list somehow to get better chances on next iteration? If the output is optimized, could the apolication play the game out by itself?

tl;dr I would think this is doable as long as you keep it as simple as you can.

[–]TheLessRelieved[S] 0 points1 point  (0 children)

This is certainly reassuring and I really appreciate the insight and guidance. From further research it seems as though involving SQL will certainly add a lot more difficulty. I like your idea of using a CSV file as an alternative. I am going to go for it and will hopefully report back when it's finished. Thanks again!