Skip to content

Commit d171528

Browse files
committed
took out debugging statement
1 parent f1f3342 commit d171528

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

algorithms/searching/bmh_search.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def search(text, pattern):
4747
text_index = search_index
4848
while text_index >= 0 and \
4949
text[text_index] == pattern[pattern_index]:
50-
print text_index, pattern_index
5150
pattern_index -= 1
5251
text_index -= 1
5352
if pattern_index == -1:

0 commit comments

Comments
 (0)