CW 34 - Binary Search

DUE

Binary Search

Save your work here: .../APCSA_1/apcsa-assignments-YourUsername/classwork/34_binary_search/BinarySearch.java

Implement the binary search algorithm recursively.

public static int binarySearch(int[ ] arr, int low, int high, int target){
  // Solution must be recursive
}