Skip to content

Commit 3fed97d

Browse files
committed
delete print
1 parent 3cc9859 commit 3fed97d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

python/34_kmp/kmp.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
def kmp(s: int, pattern: int) -> int:
1010
m = len(pattern)
1111
partial_match_table = _get_partial_match_table(pattern)
12-
print(partial_match_table)
1312
j = 0
1413
for i in range(len(s)):
1514
while j >= 0 and s[i] != pattern[j]:

0 commit comments

Comments
 (0)