Skip to content

Commit 06a8162

Browse files
authored
Update Solution.java
1 parent 58d3ce5 commit 06a8162

File tree

1 file changed

+0
-2
lines changed
  • src/main/java/g2501_2600/s2536_increment_submatrices_by_one

1 file changed

+0
-2
lines changed

src/main/java/g2501_2600/s2536_increment_submatrices_by_one/Solution.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public int[][] rangeAddQueries(int n, int[][] queries) {
2121
g[r2 + 1][c2 + 1]++;
2222
}
2323
}
24-
2524
for (int i = 0; i < n; i++) {
2625
for (int j = 0; j < n; j++) {
2726
if (i > 0) {
@@ -35,7 +34,6 @@ public int[][] rangeAddQueries(int n, int[][] queries) {
3534
}
3635
}
3736
}
38-
3937
return g;
4038
}
4139
}

0 commit comments

Comments
 (0)