()
| 5 | Map<Character, TrieNode> children; |
| 6 | boolean isWord; |
| 7 | public TrieNode() { |
| 8 | this.children = new HashMap<>(); |
| 9 | this.isWord = false; |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | public class DesignATrie { |
nothing calls this directly
no outgoing calls
no test coverage detected