We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents becc449 + e58ca10 commit 8dca3e8Copy full SHA for 8dca3e8
data_structures/trie/radix_tree.py
@@ -6,6 +6,7 @@
6
with its parent [https://en.wikipedia.org/wiki/Radix_tree]
7
"""
8
9
+
10
class RadixNode:
11
def __init__(self, prefix: str = "", is_leaf: bool = False) -> None:
12
# Mapping from the first character of the prefix of the node
0 commit comments