Skip to content

Commit b096398

Browse files
Prince326stokhos
authored andcommitted
Update linear_search.py (TheAlgorithms#1906)
1 parent bcfca95 commit b096398

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)