Skip to content

Commit 58271c5

Browse files
authored
Update linear_search.py (TheAlgorithms#1906)
1 parent b560b76 commit 58271c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

searches/linear_search.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ def linear_search(sequence, target):
4545
target = int(target_input)
4646
result = linear_search(sequence, target)
4747
if result is not None:
48-
print(f"{target} found at positions: {result}")
48+
print(f"{target} found at position : {result}")
4949
else:
5050
print("Not found")

0 commit comments

Comments
 (0)