From a1585a17b17b4bf629c3d9f0e083ec2c1b336be8 Mon Sep 17 00:00:00 2001 From: ASHISH LAKSHKAR <33260264+ashishh8055@users.noreply.github.com> Date: Thu, 1 Oct 2020 23:29:08 +0530 Subject: [PATCH] Update binsearch.cpp --- searching/binsearch.cpp | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/searching/binsearch.cpp b/searching/binsearch.cpp index afe0fa62..7054ceda 100644 --- a/searching/binsearch.cpp +++ b/searching/binsearch.cpp @@ -1,9 +1,5 @@ -/** -* Binary Search -* Author: Omkar Manjrekar -**/ -#include -#include + +#include using namespace std; int binsearch(int arr[], int l, int r, int x) @@ -73,4 +69,4 @@ int main() cout<<"key not Found"; } return 0; -} \ No newline at end of file +}