Skip to content

Commit e74f127

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7a91778 commit e74f127

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

data_structures/trie/radix_tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def insert(self, word: str) -> None:
6464
"""
6565
# Case 1: If the word is the prefix of the node
6666
# Solution: We set the current node as leaf
67-
67+
6868
# Case 2: The node has no edges that have a prefix to the word
6969
# Solution: We create an edge from the current node to a new one
7070
# containing the word

0 commit comments

Comments
 (0)