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) {