We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3e4a386 + 7b3b391 commit ded2837Copy full SHA for ded2837
data_structures/trie/radix_tree.py
@@ -6,7 +6,6 @@
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