f

Dependencies:   mbed 4DGL-uLCD-SE MMA8452

dictionary.h

Committer:
lballard9
Date:
2022-03-10
Revision:
0:8e3b9bb1084a
Child:
6:453dc852ac0f

File content as of revision 0:8e3b9bb1084a:

/*
* This file contains the dictionary array which is 
* an array of Word structs that hold words that could be
* potential secret words. You may add or remove from the Word
* struct as you see fit for your own implementation.
* You should add more potential secret words to the dictionary.
*/

struct Word {
   char* letters;
   int counts[5];
   char unique[5];
} word;  


Word dictionary[2] = {
    {"speed", {1,1,2,1,0}, {'s','p', 'e', 'd', '!'}},
    {"crane", {1,1,1,1,1}, {'c', 'r', 'a', 'n', 'e'}}
    };