Skip to content

Commit 4b36948

Browse files
Update linear_search.py
1 parent 87ad629 commit 4b36948

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

searches/linear_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def linear_search(sequence: list, target: int) -> int:
1313
"""A pure Python implementation of a linear search algorithm
1414
1515
:param sequence: a collection with comparable items (sorting is not required for
16-
linear search)
16+
linear search)
1717
:param target: item value to search
1818
:return: index of found item or -1 if item is not found
1919

0 commit comments

Comments
 (0)