diff --git a/searching/binary-search.py b/searching/binary-search.py index c4dd041..c22560d 100644 --- a/searching/binary-search.py +++ b/searching/binary-search.py @@ -18,4 +18,4 @@ def binary_search(my_list, ele): if pos > 0: print("Element found at", pos) else: - print("Element not found") + print("Element not found!!!") diff --git a/searching/linear-search.py b/searching/linear-search.py index 450d0b6..a35b527 100644 --- a/searching/linear-search.py +++ b/searching/linear-search.py @@ -9,6 +9,7 @@ break if(flag==True): - print("Element found") + print("Element found! huarrrayyy") else: - print("Element not found") \ No newline at end of file + print("Element not found!!! sry") + \ No newline at end of file