We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69171a9 commit 48bb14dCopy full SHA for 48bb14d
searches/linear_search.py
@@ -14,7 +14,7 @@
14
def linear_search(sequence, target):
15
"""Pure implementation of linear search algorithm in Python
16
17
- :param sequence: some sorted collection with comparable items
+ :param sequence: a collection with comparable items (as sorted items not required in Linear Search)
18
:param target: item value to search
19
:return: index of found item or None if item is not found
20
0 commit comments