A web-based version of Word Hunt that randomly generates 4x4 boards and displays valid words.
Visit the demo at https://garysun1.github.io/Word-Hunt-Web/
- Dictionary Integration: Employs a corpus of English words as a dictionary (
public/words.txt) - Real-time Board Generation: Generates new boards and discovers all valid words with minimal latency
- Path Visualization: Highlights valid word paths using numbered sequences
- Adaptive Design: Works on desktop and mobile devices
- Frontend: React with modern hooks (
src/App.js) - Backend: Trie-based algorithm for efficient performance with large dictionaries (~200k words) (
src/WordFinder.js) - Styling: CSS with responsive grid layouts (
src/App.css)