Anagram game and anagram solver in pure JavaScript
inspired by Playfish’s Word Challenge that doesn’t exist anymore
https://pisimulation.github.io/WordChallenge
- Type as many words as you can in 50 seconds.
- ENTER to submit the word.
- Scores are based on Scrabble letter values (e.g. A=1 points, B=3 points, etc.)
- Get extra 5 seconds for 3 consecutive correct words.
- Words you missed will be reported when game ends.
- High score will be stored in local storage as long as cookies aren't deleted.
Running time: O(n^2 log n) when n = number of all valid words
JavaScript, HTML, Bootstrap, Local Storage
- Thank you NASPA Zyzzyva for providing dictionaries of valid words to Scrabble lovers all around the world. Zyzzyva was used at every Scrabble tournament I have gone to. I am excited to be able to use part of Zyzzyva open source for my personal Scrabble-like game project.
- Thank you Duong Vu and Jason Wangsadinata for leading the amazing web development forum. Without the knowledge, I wouldn't be able to finish the whole game in less than 24 hours on my own.