(self)
| 9 | |
| 10 | class TrieNode: |
| 11 | def __init__(self): |
| 12 | self.nodes = dict() # Mapping from char to TrieNode |
| 13 | self.is_leaf = False |
| 14 | |
| 15 | def insert_many(self, words: [str]): # noqa: E999 This syntax is Python 3 only |
| 16 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected