Skip to content

Commit 3c31468

Browse files
fix: update solution for problem 3357
1 parent 9cb6e93 commit 3c31468

File tree

1 file changed

+0
-1
lines changed
  • solution/3300-3399/3356.Zero Array Transformation II

1 file changed

+0
-1
lines changed

solution/3300-3399/3356.Zero Array Transformation II/Solution.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ boolean isValid(int maxDiff) {
2828
return true;
2929
}
3030

31-
// Binary search for the minimum maximum difference
3231
while (left <= right) {
3332
int mid = left + (right - left) / 2;
3433
if (isValid(mid)) {

0 commit comments

Comments
 (0)