MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / __init__

Method __init__

Python/Trie.py:3–5  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1class TrieNode:
2 # Initialize your data structure here.
3 def __init__(self):
4 self.word=False
5 self.children={}
6
7class Trie:
8

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected