Inserts a word into the trie. :type word: str :rtype: void
(self, word)
| 55 | |
| 56 | |
| 57 | def insert(self, word): |
| 58 | """ |
| 59 | Inserts a word into the trie. |
| 60 | :type word: str |
| 61 | :rtype: void |
| 62 | """ |
| 63 | self.makeATrieNodes(word) |
| 64 | |
| 65 | def search(self, word): |
| 66 | """ |
nothing calls this directly
no test coverage detected