Skip to content

Commit 0342a0d

Browse files
committed
Runtime: 2 ms (Top 12.57%) | Memory: 45.3 MB (Top 7.43%)
1 parent 354c7ef commit 0342a0d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/R/Range Addition II/Range Addition II.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 2 ms (Top 12.57%) | Memory: 45.3 MB (Top 7.43%)
12
class Solution {
23
public int maxCount(int m, int n, int[][] ops) {
34
int minRow=m,minCol=n;
@@ -7,4 +8,4 @@ public int maxCount(int m, int n, int[][] ops) {
78
}
89
return minRow*minCol;
910
}
10-
}
11+
}

0 commit comments

Comments
 (0)