Your program, called should take two command line arguments, the dictionary, and the text that you wish to spellcheck.
Provide some sample text. Your program should be case insensitive (so you can toLower everything). Numbers and contractions are considered valid words.
You may use the java HashTable or HashMap to implement this program; but it must use some kind of hash table.