-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmine.test.js
155 lines (142 loc) · 2.32 KB
/
mine.test.js
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/**
* ## 이해
*
* 미지의 것: 매트릭이 주어졌을 때 깃발의 개수를 구하여라
* 자료
* - 깃발의 개수는 주변에 지뢰가 몇 개 있는지를 나타낸다.
* - 지뢰의 개수는 8방향에서 정보를 수집한다.
* 조건
* -
*
* ## 계획
* -
*
* ## 실행
*
* ## 반성
*
*/
const MINE = -1;
const flagCount = (matrix, x, y) => {
if (matrix[y][x] === -1) {
return 0;
}
return [
[x - 1, y - 1],
[x, y - 1],
[x + 1, y - 1],
[x - 1, y],
[x + 1, y],
[x - 1, y + 1],
[x, y + 1],
[x + 1, y + 1],
]
.filter(([dx, dy]) => dy >= 0 && dx >= 0 && dy < matrix.length && dx < matrix.length)
.filter(([dx, dy]) => matrix[dy][dx] === MINE)
.length;
};
const run = matrix => {
let count = 0;
matrix.forEach((rows, y) => {
rows.forEach((column, x) => {
count += flagCount(matrix, x, y);
});
});
return count;
};
test('flagCount', () => {
const matrix = [
[0, 0, 0, 0],
[0, 0, -1, 0],
[0, 0, 0, 0],
[-1, 0, 0, 0],
];
expect(flagCount(
matrix,
0, 0,
)).toBe(0);
expect(flagCount(
matrix,
1, 0,
)).toBe(1);
expect(flagCount(
matrix,
2, 0,
)).toBe(1);
expect(flagCount(
matrix,
3, 0,
)).toBe(1);
expect(flagCount(
matrix,
0, 1,
)).toBe(0);
expect(flagCount(
matrix,
1, 1,
)).toBe(1);
expect(flagCount(
matrix,
2, 1,
)).toBe(0);
expect(flagCount(
matrix,
3, 1,
)).toBe(1);
expect(flagCount(
matrix,
0, 2,
)).toBe(1);
expect(flagCount(
matrix,
1, 2,
)).toBe(2);
expect(flagCount(
matrix,
2, 2,
)).toBe(1);
expect(flagCount(
matrix,
3, 2,
)).toBe(1);
expect(flagCount(
matrix,
0, 3,
)).toBe(0);
expect(flagCount(
matrix,
1, 3,
)).toBe(1);
expect(flagCount(
matrix,
2, 3,
)).toBe(0);
expect(flagCount(
matrix,
3, 3,
)).toBe(0);
});
test('run', () => {
expect(
run(
[
[0, 0, 0, 0, 0, 0],
[0, 0, 0, -1, 0, 0],
[-1, 0, 0, 0, 0, 0],
[0, -1, 0, 0, 0, 0],
[0, 0, 0, 0, -1, 0],
[0, 0, 0, 0, 0, 0],
],
),
).toBe(27);
expect(
run(
[
[0, 0, 0, 0],
[0, 0, -1, 0],
[0, 0, 0, 0],
[-1, 0, 0, 0],
],
),
).toBe(11);
});