From be1309f0802ac5cf43a4aa7101707e98ac1be2e9 Mon Sep 17 00:00:00 2001 From: Aman kumar <43309584+amankumar0199@users.noreply.github.com> Date: Fri, 25 Oct 2019 10:42:00 +0530 Subject: [PATCH] Update binary_search.py --- Searching Algorithm/binary_search.py | 1 + 1 file changed, 1 insertion(+) 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: