-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path02_number_of_island.py
69 lines (51 loc) · 1.61 KB
/
02_number_of_island.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import collections
class Solution:
def numIslands(self, grid: list[list[str]]) -> int:
if not grid:
return 0
rows, cols = len(grid), len(grid[0])
visit = set()
islands = 0
def bfs(row, col):
q = collections.deque()
visit.add((row, col))
q.append((row, col))
while q:
row, col = q.popleft()
directions = [[0, 1], [0, -1], [-1, 0], [1, 0]]
for dirRow, dirCol in directions:
r, c = row + dirRow, col + dirCol
if ((r) in range(rows) and
(c) in range(cols) and
grid[r][c] == "1" and
(r, c) not in visit):
q.append((r, c))
visit.add((r, c))
for row in range(rows):
for col in range(cols):
if grid[row][col] == "1" and (row, col) not in visit:
bfs(row=row, col=col)
islands += 1
return islands
if __name__ == "__main__":
obj = Solution()
grid1 = [
["1","1","1","1","0"],
["1","1","0","1","0"],
["1","1","0","0","0"],
["0","0","0","0","0"]
]
print(obj.numIslands(grid=grid1))
grid2 = [
["1","1","0","0","0"],
["1","1","0","0","0"],
["0","0","1","0","0"],
["0","0","0","1","1"]
]
print(obj.numIslands(grid=grid2))
grid3 = [
["1","1","1"],
["0","1","0"],
["1","1","1"]
]
print(obj.numIslands(grid=grid3))