We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9708dc3 + 87a973c commit 76fc83cCopy full SHA for 76fc83c
competitivepython/searches/linearsearch.py
@@ -7,6 +7,6 @@ def linear_search(arr, target):
7
return search
8
return -1
9
except Exception as e:
10
- logging.exception("An error occurred during binary search: %s", e)
+ logging.exception("An error occurred during linear search: %s", e)
11
return "An error occurred during linear search: {}".format(str(e))
12
0 commit comments