This tool provides possible solutions to "wordgrid games" like Boggle or Wordament.
The tool requires a dictionary that provides the word list which is used to determine if a found string is a valid word. This repository does not contain such a file but examples can be found on the internet. For development I used the dictionary of WinEdt.
After starting the program loads the dictionary from the file system (currently hardcoded as "US.dict") and awaits the user input. The wordgrid has to be entered from left to right, top to bottom without any spaces.
A | B | C | D |
E | F | G | H |
I | J | K | L |
M | N | O | P |
The table above will be entered as ABCDEFGHIJKLMNOP
The solver currently assumes that
- the wordgrid consists of a 4x4 grid
- each cell only contains one character
- only words with at least three characters will be displayed