-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path463.py
39 lines (27 loc) · 945 Bytes
/
463.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
class Solution:
def islandPerimeter(self, grid):
"""
:type grid: List[List[int]]
:rtype: int
"""
lengthy = len(grid)
lengthx =len(grid[0])
result = 0
for i in range(lengthx):
for j in range(lengthy):
if grid[j][i]==1:
if i-1<0 or grid[j][i-1] ==0:
result=result+1
if j-1<0 or grid[j-1][i]==0:
result=result+1
if i+1>=lengthx or grid[j][i+1]==0:
result=result+1
if j+1 >=lengthy or grid[j+1][i]==0:
result=result+1
else:
continue
return result
if __name__=='__main__':
sl=Solution()
grid=[[1,0]]
print(sl.islandPerimeter(grid))