-
Notifications
You must be signed in to change notification settings - Fork 481
/
Copy path0200.py
41 lines (34 loc) · 1.11 KB
/
0200.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
class Solution:
def numIslands(self, grid):
"""
:type grid: List[List[str]]
:rtype: int
"""
if not grid:
return 0
result = 0
m, n = len(grid), len(grid[0])
for row in range(m):
for col in range(n):
if grid[row][col] == '1':
result += 1
self._numIslands(grid, row, col)
return result
def _numIslands(self, grid, r, c):
grid[r][c] = '0'
if 0 < r and grid[r - 1][c] == '1':
self._numIslands(grid, r - 1,c)
if 0 < c and grid[r][c - 1] == '1':
self._numIslands(grid, r, c - 1)
if c < len(grid[0]) -1 and grid[r][c + 1] =='1':
self._numIslands(grid, r, c + 1)
if r < len(grid) - 1 and grid[r + 1][c] == '1':
self._numIslands(grid, r + 1, c)
if __name__ == '__main__':
grid =[
['1','1','1','1','0'],
['1','1','0','1','0'],
['1','1','0','0','0'],
['0','0','0','0','0']
]
print(Solution().numIslands(grid))