Skip to content

Commit bf9f4ce

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

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

searches/linear_search.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ def linear_search(sequence: list[int], target: int) -> int:
3333
return -1
3434

3535

36-
def rec_linear_search(
37-
sequence: list[int], low: int, high: int, target: int
38-
) -> int:
36+
def rec_linear_search(sequence: list[int], low: int, high: int, target: int) -> int:
3937
"""
4038
A pure Python implementation of a recursive linear search algorithm
4139

0 commit comments

Comments
 (0)