Skip to content

Commit 5d071d1

Browse files
Addresses requested changes for Leetcode Solution 302
Replaces < with &lt; wherever asked to do so,
1 parent 35b6e6a commit 5d071d1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

dsa-solutions/lc-solutions/0300-0399/0302-smallest-rectangle-enclosing-black-pixels.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,14 @@ Output: 1
3333
### Constraints
3434
- m == image.length
3535
- n == image[i].length
36-
- 1 <= m, n <= 100
36+
- 1 &lt;= m, n &lt;= 100
3737
- image[i][j] is either '0' or '1'.
38-
- 0 <= x < m
39-
- 0 <= y < n
38+
- 0 &lt;= x &lt; m
39+
- 0 &lt;= y &lt; n
4040
- image[x][y] == '1'
4141
- The black pixels in the image only form one component.
42-
- At most 104 calls will be made to `add` and `find`.
42+
- At most 10^4 calls will be made to `add` and `find`.
43+
4344

4445
## Solution
4546

0 commit comments

Comments
 (0)