#ScrabbleWordGenerator

Given a word rack this program generates all words that can be generated from the given rack for the first move of Scrabble Game.

Approach Used:

  1. Read all words from the dictionary into a vector.

  2. For a given word rack do a linear search on the vector to find out all possible words.