Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 714 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 714 Bytes

boggle_player

To use the application, enter the Boggle Board in the .txt file, and run the .py file. The variables 'Crossing' and min_num_lett at the top of the turtle function are whether or not the path is allowed to cross, and the minimum number of letters that a word must have for the programto output it.

The Applescript script can be used to paste all of the words into another program one by one

  • To do so, simply copy the comma separated list, and paste it into the dialog box when prompted
  • It will then paste the words one by one

The Trie tree that is used to store the dictionary is from the Github page linked in the .py file https://github.com/vivekn/autocomplete/blob/master/trie.py#L11