Unjumble — You won’t lose that jumbled words game again

Posted on 4 Comments
Unjumble

Another of my free time exercises, Unjumble does just that – it unscrambles a jumbled/scrambled word into all possible English dictionary words that can be formed out of that jumbled word. The interface is extremely simple. You have a textbox to input your jumbled word, and as you type, all unjumbled word suggestions start appearing as list items in the combobox below. To copy an unjumbled word to clipboard, just click on it. Simple, isn’t it?

Like QuickCopy, Unjumble was coded in C#, and makes use of SQLite as the portable database to store a huge list of English dictionary words. What’s the most interesting thing about this little app is the algorithm behind it.

There is a pre-prepared database of almost all (58000+) English words [wordlist.txt], stored along with their hashes (words formed by the original words’ individual alphabets in sorted order). The input jumbled word’s hash is then calculated in a similar way, and is compared with the hashes stored in the database. All matches are then displayed in the list box.

I bet, using Unjumble, you’ll never lose your newspaper’s jumbled words game again. 😉

Download: Source Code (1.5 MB) – Installer (1.7 MB)

4 thoughts on “Unjumble — You won’t lose that jumbled words game again

  1. Guess what, I have done exactly the same thing some time in the past to solve a puzzle!

    I write a simple C++ program to generate a file with all possibilities and use the dictionary in linux shell to match the valid words.

  2. That’s nice. I’d love to see your implementation in C++ if you’d want to share it. 🙂

  3. quite interesting

  4. @sara: Glad you liked it. 🙂

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.