Skip to content

Instantly share code, notes, and snippets.

@cmh114933
Created June 3, 2019 02:44
Show Gist options
  • Save cmh114933/c2d24031c373504048aa04c035a58830 to your computer and use it in GitHub Desktop.
Save cmh114933/c2d24031c373504048aa04c035a58830 to your computer and use it in GitHub Desktop.
/**
* BinarySearch
*/
public class BinarySearch {
static int bsearch(int[] arr, int number){
return 0;
}
public static void main(String[] args) {
int[] arr = {7,9,21,42,58,67,88};
System.out.println(bsearch(arr, 67) == 5);
System.out.println(bsearch(arr, 9) == 1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment