From 3929d035579797adae1135063a6bad5680e1e4c6 Mon Sep 17 00:00:00 2001 From: yashraj0 <33134824+yashraj0@users.noreply.github.com> Date: Fri, 27 Oct 2017 01:09:31 +0530 Subject: [PATCH] remove comments --- BinarySearch/C++/BinarySearch - (recursive).cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/BinarySearch/C++/BinarySearch - (recursive).cpp b/BinarySearch/C++/BinarySearch - (recursive).cpp index e26b202d6..e1298bc89 100644 --- a/BinarySearch/C++/BinarySearch - (recursive).cpp +++ b/BinarySearch/C++/BinarySearch - (recursive).cpp @@ -5,8 +5,6 @@ using namespace std; -//simple recursive binary Search -//'low' is the lower index & 'high' is the upper index & 'key' is the value to be searched int binarySearch(int low,int high,int key) {