Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 822 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 822 Bytes

anagram_game

Find as many words as possible that can be performed by adding one letter to the given word.

anagram game

The mechanics of the game are as follows:

The game provides the user with a word from the dictionary.
The user tries to create as many words as possible that contain all the letters of the given word plus one additional letter.
Note that adding the extra letter at the beginning or the end without reordering the other letters is not valid.
For example, if the game picks the word 'ore' as a starter, the user might guess 'rose' or 'zero' but not 'sore'.
The user can give up and see the words that they did not guess.

Based on

Applied CS Skills With Google