Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ TrieNode
Class
TrieNode
Python/Trie.py:1–5 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
class
TrieNode:
2
# Initialize your data structure here.
3
def
__init__(self):
4
self.word=False
5
self.children={}
6
7
class
Trie:
8
Callers
2
__init__
Method · 0.70
insert
Method · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected