Skip to content

Commit 10d4b0c

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

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

searches/sentinel_linear_search.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@ def sentinel_linear_search(arr: list[int], target: int) -> int:
3737

3838
if __name__ == "__main__":
3939
import doctest
40+
4041
doctest.testmod()
41-
print(sentinel_linear_search([1, 2, 3, 4, 5], 3))
42+
print(sentinel_linear_search([1, 2, 3, 4, 5], 3))

0 commit comments

Comments
 (0)