Skip to content

Commit 65aab07

Browse files
Updates Leetcode 308
Replaces < with &lt;
1 parent c98af4a commit 65aab07

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

dsa-solutions/lc-solutions/0300-0399/0308-range-sum-query-2d-mutable.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ Output: [1]
4343
### Constraints
4444
- m == matrix.length
4545
- 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
46+
- 1 &lt;= m, n &lt;= 200
47+
- -1000 &lt;= matrix[i][j] &lt;= 1000
48+
- 0 &lt;= row &lt; m
49+
- 0 &lt;= col &lt; n
50+
- -1000 &lt;= val &lt;= 1000
51+
- 0 &lt;= row1 &lt;= row2 &lt; m
52+
- 0 &lt;= col1 &lt;= col2 &lt; n
5353
- At most 5000 calls will be made to sumRegion and update.
5454

5555
### Follow up

0 commit comments

Comments
 (0)