diff --git a/Searching Algorithm/binary_search.py b/Searching Algorithm/binary_search.py index 930f5e4..ec2f4f9 100644 --- a/Searching Algorithm/binary_search.py +++ b/Searching Algorithm/binary_search.py @@ -1,4 +1,5 @@ #Binary sort with Recursive way +#it is used to find the sortest list element by recursion def binarySearch (arr, l, r, x): if r >= l: