Skip to content

Commit 94b71b4

Browse files
authored
Update naive_string_search.py
1 parent d823ec1 commit 94b71b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

strings/naive_string_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ def naive_pattern_search(s: str, pattern: str) -> list:
3939

4040
if __name__ == "__main__":
4141
assert naive_pattern_search("ABCDEFG", "DE") == [3]
42-
print(f"{naive_pattern_search('ABAAABCDBBABCDDEBCABC', 'ABC')=}")
42+
print(f"{naive_pattern_search('ABAAABCDBBABCDDEBCABC', 'ABC') = }")

0 commit comments

Comments
 (0)