Skip to content

Commit 07eade8

Browse files
committed
Fix clang format errors
1 parent 6e8fc5c commit 07eade8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/thealgorithms/searches/BinarySearch2dArray.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ else if (arr[midRow][midCol] < target) {
6363
// If the target wasn't found during the row search, check the middle column of
6464
// startRow and endRow.
6565
if (arr[startRow][midCol] == target) {
66-
return new int[] { startRow, midCol };
66+
return new int[] {startRow, midCol};
6767
}
6868

6969
if (arr[endRow][midCol] == target) {
70-
return new int[] { endRow, midCol };
70+
return new int[] {endRow, midCol};
7171
}
7272

7373
// If target is smaller than the element in the left of startRow, perform a

0 commit comments

Comments
 (0)