Given a dictionary of words and an M x N board where every cell has one character. Find all possible different words from the dictionary that can be formed by a sequence of adjacent characters on the board. We can move to any of 8 adjacent characters, but a word should not have multiple instances of the same cell.
- Time : O(8^|dict| m n )
- Space : O(|dict|)
c++
1 | struct Trie { |