Method
__init__
Initialize your data structure here.
(self)
Source from the content-addressed store, hash-verified
| 19 | """ |
| 20 | |
| 21 | def __init__(self): |
| 22 | """ |
| 23 | Initialize your data structure here. |
| 24 | """ |
| 25 | self.root = TrieNode() |
| 26 | |
| 27 | def insert(self, word): |
| 28 | """ |
Tested by
no test coverage detected