Skip to content

Commit 3b6815b

Browse files
authored
Update number-of-strings-that-appear-as-substrings-in-word.py
1 parent 8e06e7a commit 3b6815b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Python/number-of-strings-that-appear-as-substrings-in-word.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ def __init__(self):
1515

1616

1717
class AhoTrie(object):
18-
1918
def step(self, letter):
2019
while self.__node and letter not in self.__node.children:
2120
self.__node = self.__node.suffix

0 commit comments

Comments
 (0)