Skip to content

Commit e5d3d11

Browse files
Update 0200.岛屿数量.广搜版.md
1 parent 5085e78 commit e5d3d11

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

problems/0200.岛屿数量.广搜版.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -196,11 +196,8 @@ class Solution {
196196
}
197197
}
198198
```
199-
<p align="center">
200-
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
201-
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
202-
</a>
203-
```
199+
200+
## 其他语言版本
204201
### Python
205202
BFS solution
206203
```python
@@ -241,3 +238,9 @@ class Solution:
241238
q.append((next_i, next_j))
242239
visited[next_i][next_j] = True
243240
```
241+
242+
<p align="center">
243+
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
244+
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
245+
</a>
246+
```

0 commit comments

Comments
 (0)