From b3e102758b2cc20a680e9a110424b67d4c95196b Mon Sep 17 00:00:00 2001 From: venkatasai0234 Date: Sun, 30 Aug 2026 23:18:14 -0700 Subject: [PATCH] access of repo Done --- Exercise_1.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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