Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions BinarySearch/C++/BinarySearch - (recursive).cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down