Implement a hash table class. You may use WordHash.java as a starting point. Be sure to thoroughly test your
implementation by writing a main() method containing test code.
The hash table should automatically resize
when the load factor exceeds 0.75. When choosing a new table size, be
careful to ensure that it will behave well with the division method.
Once your hash table is working, replace your WordArray based
dictionary in your text editor with the hash table, and test the resulting
combined program.