-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path463_IslandPerimeter.swift
58 lines (55 loc) · 1.33 KB
/
463_IslandPerimeter.swift
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
class Solution {
func islandPerimeter(_ grid: [[Int]]) -> Int {
var total = 0
for i in 0..<grid.count {
for j in 0..<grid[0].count {
if grid[i][j] == 1 {
total += calculateCellPerimeter(i,j,grid)
}
}
}
return total
}
func calculateCellPerimeter(_ x: Int, _ y: Int, _ grid: [[Int]]) -> Int {
var top = 0, bottom = 0, left = 0, right = 0
let rows = grid.count
let cols = grid[0].count
if x == 0 {
top = 1
} else {
if grid[x-1][y] == 1 {
top = 0
} else {
top = 1
}
}
if x == rows-1 {
bottom = 1
} else {
if grid[x+1][y] == 1 {
bottom = 0
} else {
bottom = 1
}
}
if y == 0 {
left = 1
} else {
if grid[x][y-1] == 1 {
left = 0
} else {
left = 1
}
}
if y == cols-1 {
right = 1
} else {
if grid[x][y+1] == 1 {
right = 0
} else {
right = 1
}
}
return top+bottom+left+right
}
}