- an android word game
Given 4x4 grid with alphabets arranged in random order. The goal of the game is to make maximum words using the adjacent alphabets.
Trie data structure is used to represent dictionary, Depth first search is used to search for the possible combination of valid words- in the solver activity.