-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnumOfIslands.py
30 lines (27 loc) · 904 Bytes
/
numOfIslands.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
def largestIsland(grid):
max_size = float('-inf')
num = 0
rows, cols = len(grid), len(grid[0])
def scan(grid, i, j, size):
nonlocal max_size
if i < 0 or j >= len(grid[0]) or i >= len(grid) or j < 0 or grid[i][j] == 0: return
grid[i][j] = 0
size += 1
max_size = max(max_size, size)
scan(grid, i + 1, j, size)
scan(grid, i - 1, j, size)
scan(grid, i, j - 1, size)
scan(grid, i, j + 1, size)
for i in range(rows):
for j in range(cols):
if grid[i][j] == 1:
num += 1
scan(grid, i, j, 1)
return max_size if max_size != float('-inf') else 0
grid = [
[0,1,1,1,0,0,0,1,1],
[0,1,1,1,0,1,0,0,0],
[0,1,0,0,0,0,0,1,0],
[0,0,1,1,0,1,1,1,0],
]
assert(largestIsland(grid) == 7)