We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b560b76 commit 58271c5Copy full SHA for 58271c5
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