Create a Boggle Word Solver using recursion in Python
33 ratings

3,640 already enrolled
Create a Boggle Word Solver in Python by defining various functions that load a 4x4 game board based on input.
Recursively search in all allowed directions for plausible words using Depth First Traversal.
Learn to store the dictionary in a trie data structure which makes for more efficient lookups.