Basic Scrabble Solver
807580May 2 2010 — edited May 5 2010I am in the process of writing a program which will take in 7 characters and store all the possible 3-7 letter words in an Arraylist. I downloaded a word list from online in the form of a text file.
My initial thought was to use nested for-loops to check every possible word and then check that against the word list. However, I'm not quite sure on how to do the checking part efficiently. If I check my newly-created word against each word in the world list file, it would take awhile to complete. Is there a more efficient way to do this?