A hobby project for learning React and Typescript
The project is a React Typescript tool for finding solutions to the word game puzzle "Word Hunt" in the IOS mobile app GamePigeon
The game is available on IOS and is played through iMessages.
- Run
npm run dev
- Go to
http://localhost:5173/
- Enter the letters of your game into the board on the top left panel
- Press "Solve"
- The tool will work for a while and then show all possible valid words in the top right list box
- Clicking on a solution will highlight the letters on the board
The tool works as follows:
- Generate all possible valid x / y points on the board within the min / max length constraints
- Get the string of letters associated with each valid x / y point combination
- For each valid string, check if it is also a valid word in the wordlist
- Display the solutions in order of length and then alpha
- Highlight the words associated x / y points on the board when a solution is clicked