We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcfca95 commit b096398Copy full SHA for b096398
searches/linear_search.py
@@ -45,6 +45,6 @@ def linear_search(sequence, target):
45
target = int(target_input)
46
result = linear_search(sequence, target)
47
if result is not None:
48
- print(f"{target} found at positions: {result}")
+ print(f"{target} found at position : {result}")
49
else:
50
print("Not found")
0 commit comments