main
Bookworm Solver
Small Go app with a browser UI that finds the best words you can build from a set of letters.
Run it
go run .
Then open http://localhost:8080.
How it ranks words
The solver checks every word in its dictionary, keeps only words that can be built from your letters, and ranks them by:
- Total letter score
- Word length
- Alphabetical order
It also adds a length bonus so longer valid words tend to beat short high-value words.
Custom dictionary
If you want better results, add one word per line to words/words.txt. The app will merge that file with the built-in starter dictionary when it starts.
Description
Languages
Go
48.6%
CSS
30.5%
HTML
20.9%