
To view how a word was made click on it in the list and an animation will play showing how to draw the word, this can be repeated as many times as needed by clicking the word again Type the wordament puzzle into the boxes above, as shown in the wordament game, after the wordlist has loaded the puzzle should be solved in less than 500ms This is a wordament solver written in a combination of C and pure JS, and is designed to solve wordament puzzles in browser as fast as possible Take a 4x4 grid that’s set out in the following way: |0 |1 |2 |3 |Īny number less then the width of the grid is in the first row (and thus no up tile) any number equal to or greater than width *( height-1) will be the last row (and thus no down tile), and so on and so forth.Wordament Solver By Douile (No affiliation to Microsoft or Wordament) This would allow simple mathamatical checks on the tile itself to infer where in the grid it would be. To represent the grid above, I decided on a simple implementation where a tile was an integer: enum Grid : int The game is simple given 16 letter tiles, create as many words as possible, while:įor example, RIOT is valid, but PILOT would not be allowed. I had always suspected that I wasn’t good at the game luckily for me, Wordament, Microsoft’s online multiplayer tournament version, left me in no doubt at all.Ĭlearly, if I was to improve my score, I would need to diligently practice cheat.

When I was younger, I used to play a word game called Boggle, where one would try to find as many words as possible from random letters.
