Skip to content

Instantly share code, notes, and snippets.

View jaideepheer's full-sized avatar
🕹️

Jaideep Singh Heer jaideepheer

🕹️
View GitHub Profile
package com.capability3;
import java.util.*;
public class binarysearch
{
public static boolean search(int []arr,int n,int key)
{
// Insert sort
int temp;
for(int i=0;i<n;i++)
{