-
Notifications
You must be signed in to change notification settings - Fork 17
/
number-of-enclaves.py
140 lines (115 loc) · 3.68 KB
/
number-of-enclaves.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import unittest
from collections import deque
class Solution:
def numEnclaves(self, A):
visited = set()
enclaves_count = 0
for y in range(len(A)):
for x in range(len(A[0])):
if (x, y) not in visited and int(A[y][x]):
stack = [(x, y)]
visited.add((x, y))
out_of_bounds = False
count_of_points = 1
while len(stack):
point = stack.pop()
neighbours = [
(point[0] - 1, point[1]),
(point[0] + 1, point[1]),
(point[0], point[1] + 1),
(point[0], point[1] - 1),
]
for neigh in neighbours:
if neigh[0] >= len(A[0]) or neigh[0] < 0 or \
neigh[1] >= len(A) or neigh[1] < 0:
out_of_bounds = True
continue
if not int(A[neigh[1]][neigh[0]]):
continue
if neigh not in visited:
count_of_points += 1
stack.append(neigh)
visited.add(neigh)
if not out_of_bounds:
enclaves_count += count_of_points
return enclaves_count
class TestSolution(unittest.TestCase):
def setUp(self):
self.sol = Solution()
def test_empty(self):
self.assertEqual(self.sol.numEnclaves([]), 0)
def test_just_zero(self):
self.assertEqual(self.sol.numEnclaves([[0]]), 0)
def test_just_one(self):
self.assertEqual(self.sol.numEnclaves([[1]]), 0)
def test_1(self):
A = [
[1, 1, 1, 1, 0],
[1, 1, 0, 1, 0],
[1, 1, 0, 0, 0],
[0, 0, 0, 0, 0],
]
self.assertEqual(self.sol.numEnclaves(A), 0)
def test_2(self):
A = [
[1, 1, 0, 1, 0],
[1, 1, 0, 1, 0],
[1, 1, 0, 0, 0],
[0, 0, 0, 0, 0],
]
self.assertEqual(self.sol.numEnclaves(A), 0)
def test_3(self):
A = [
[0, 1, 0, 1, 0],
[1, 1, 0, 1, 0],
[1, 1, 0, 0, 0],
[0, 0, 1, 0, 1],
]
self.assertEqual(self.sol.numEnclaves(A), 0)
def test_4(self):
A = [
[0,0,0,0],
[1,0,1,0],
[0,1,1,0],
[0,0,0,0],
]
self.assertEqual(self.sol.numEnclaves(A), 3)
def test_5(self):
A = [
[0,1,1,0],
[0,0,1,0],
[0,0,1,0],
[0,0,0,0],
]
self.assertEqual(self.sol.numEnclaves(A), 0)
def test_6(self):
A = [
[0,0,0,0],
[0,0,1,0],
[0,1,0,0],
[0,0,0,0],
]
self.assertEqual(self.sol.numEnclaves(A), 2)
def test_6(self):
A = [
[0,0,0,0],
[0,1,1,0],
[0,1,1,0],
[0,0,0,0],
]
self.assertEqual(self.sol.numEnclaves(A), 4)
def test_7(self):
A = [
[0,0,0,1,1,1,0,1,0,0],
[1,1,0,0,0,1,0,1,1,1],
[0,0,0,1,1,1,0,1,0,0],
[0,1,1,0,0,0,1,0,1,0],
[0,1,1,1,1,1,0,0,1,0],
[0,0,1,0,1,1,1,1,0,1],
[0,1,1,0,0,0,1,1,1,1],
[0,0,1,0,0,1,0,1,0,1],
[1,0,1,0,1,1,0,0,0,0],
[0,0,0,0,1,1,0,0,0,1],
]
self.assertEqual(self.sol.numEnclaves(A), 3)
unittest.main()