diff --git a/Exercise_1.java b/Exercise_1.java index c3ff1141..564d1c26 100644 --- a/Exercise_1.java +++ b/Exercise_1.java @@ -2,7 +2,7 @@ class BinarySearch { // Returns index of x if it is present in arr[l.. r], else return -1 int binarySearch(int arr[], int l, int r, int x) { - //Write your code here + //Write your code here check } // Driver method to test above