We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c98af4a commit 65aab07Copy full SHA for 65aab07
dsa-solutions/lc-solutions/0300-0399/0308-range-sum-query-2d-mutable.md
@@ -43,13 +43,13 @@ Output: [1]
43
### Constraints
44
- m == matrix.length
45
- n == matrix[i].length
46
-- 1 <= m, n <= 200
47
-- -1000 <= matrix[i][j] <= 1000
48
-- 0 <= row < m
49
-- 0 <= col < n
50
-- -1000 <= val <= 1000
51
-- 0 <= row1 <= row2 < m
52
-- 0 <= col1 <= col2 < n
+- 1 <= m, n <= 200
+- -1000 <= matrix[i][j] <= 1000
+- 0 <= row < m
+- 0 <= col < n
+- -1000 <= val <= 1000
+- 0 <= row1 <= row2 < m
+- 0 <= col1 <= col2 < n
53
- At most 5000 calls will be made to sumRegion and update.
54
55
### Follow up
0 commit comments