Skip to content

Commit fc70261

Browse files
authoredAug 1, 2023
chore: update lc problem: No.0695 (doocs#1368)
1 parent 63c960c commit fc70261

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎solution/0600-0699/0695.Max Area of Island/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<pre>
2222
<strong>输入:</strong>grid = [[0,0,1,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,1,1,1,0,0,0],[0,1,1,0,1,0,0,0,0,0,0,0,0],[0,1,0,0,1,1,0,0,1,0,1,0,0],[0,1,0,0,1,1,0,0,1,1,1,0,0],[0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,1,1,1,0,0,0],[0,0,0,0,0,0,0,1,1,0,0,0,0]]
2323
<strong>输出:</strong>6
24-
<strong>解释:</strong>答案不应该是 <code>11</code> ,因为岛屿只能包含水平或垂直这四个方向上的 <code>1</code>
24+
<strong>解释:</strong>答案不应该是 11 ,因为岛屿只能包含水平或垂直这四个方向上的 1
2525
</pre>
2626

2727
<p><strong>示例 2:</strong></p>

‎solution/config.py

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
638,
2020
679,
2121
682,
22+
695,
2223
753,
2324
818,
2425
822,

0 commit comments

Comments
 (0)
Please sign in to comment.