...An automatic swiper that in conjunction with Bluestacks lets you swipe every possible word thereby getting an insanely high score !
How does it work ?
1. Runs a DFS on the Ruzzle grid and at each instance checks if the word formed is a valid one.
2. Since the size of a grid is just 4 x 4, optimizations (such as using a suffix tree) aren't that important.
3. The total list of possible words is obtained fairly quickly. Less than 10 seconds on an i7 machine (without using any form of parallelization or multithreading).
4. The TWL06 wordlist, same as the one used by Ruzzle, is used as the dictionary.
5. ...