-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart2.ts
43 lines (38 loc) · 811 Bytes
/
part2.ts
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
import * as fs from 'fs';
const input = fs
.readFileSync('input', 'utf8')
.split('\n')
.map((line) => line.split(''));
const search = 'A';
const matches = ['MS', 'SM'];
const directionPairs = [
[
{ x: -1, y: 1 },
{ x: 1, y: -1 },
],
[
{ x: 1, y: 1 },
{ x: -1, y: -1 },
],
];
let result = 0;
for (let i = 0; i < input.length; i++) {
for (let j = 0; j < input[i].length; j++) {
if (input[i][j] === search) {
let matched = 0;
for (const directionPair of directionPairs) {
const directionPairString = directionPair.reduce(
(acc, direction) => acc + input[i + direction.x]?.[j + direction.y],
'',
);
if (matches.includes(directionPairString)) {
matched++;
}
}
if (matched === directionPairs.length) {
result++;
}
}
}
}
console.log(result);