Skip to content

Commit 8dca3e8

Browse files
committed
Merge branch 'turing-code' of https://github.com/covid-in/TheAlgorithms-Python into turing-code
2 parents becc449 + e58ca10 commit 8dca3e8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

data_structures/trie/radix_tree.py

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
with its parent [https://en.wikipedia.org/wiki/Radix_tree]
77
"""
88

9+
910
class RadixNode:
1011
def __init__(self, prefix: str = "", is_leaf: bool = False) -> None:
1112
# Mapping from the first character of the prefix of the node

0 commit comments

Comments
 (0)