Wordle Solver

Additional challenge: make a solver for a Wordle variant (Fibble, Xordle, Symble, Caesardle, Crissle Crossle, etc.)

I will look into Xordle and Alphalock

7.0 OUT NOW!!!

It has been a long time since I last worked on this project. But with the new Snap! updates coming out, I put it down for a time. Picking it back up, I have used some scummy methods to make it not only faster, but also smarter while being faster!

Wordle solver 7.0 now not only uses what you tell it about the words, but it uses statistical data to help it find the word!

Link to Project

What do I mean by “Scummy““?

If you are familiar with using loops, that can take a long time to calculate. But using blocks like

wordle solver 7.0 script pic you can actually processes entire lists all at once.

Compare

wordle solver 7.0 script pic(1)

to

wordle solver 7.0 script pic(2)

What statistical data?

Well letters like a,s, and c are a lot more common than letters like q,z, and x. The algorithm now takes this into account. But it is not hard coded to just those letters, but rather to what ever the final word could be.

looks like you’ve discovered hyperblocks!

See, I thought it would have something to do with the fact the ring has go through the interpreter so many more times. I guess that is still a bit true.

In the time I put snap down a learned a bit of JavaScript and HTML. The language it self is definitely much faster. Again why I thought it was the interpreter.