Skip to content

Commit 9edcc10

Browse files
authored
Updates 0073-Set-Matrix-Zeroes.md
1 parent d67a365 commit 9edcc10

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dsa-solutions/lc-solutions/0000-0099/0073-Set-Matrix-Zeroes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ matrix = [[0,1,2,0],[3,4,5,2],[1,3,1,5]]
5151

5252
### Constraints
5353

54-
- m == matrix.length
55-
- n == matrix[0].length
56-
- 1 <= m, n <= 200
57-
- -2<sup>31</sup> <= matrix[i][j] <=2<sup>31</sup> - 1
54+
- $m = \text {matrix.length}$
55+
- $n = \text {matrix[0].length}$
56+
- $1 \leq m, n \leq 200$
57+
- $-2^{31} \leq \text {matrix[i][j]} \leq 2^{31} - 1$
5858

5959
### Approach
6060

0 commit comments

Comments
 (0)