-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
53 lines (39 loc) · 1.75 KB
/
main.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
44
45
46
47
48
49
50
51
52
53
import * as fs from 'fs';
const input: string = fs.readFileSync(`${__dirname}/input.txt`).toString();
type Packet = number | Packet[];
type Result = 'valid' | 'invalid' | 'continue';
const packets: Packet[][] = input.split('\n\n').map(packets => packets.split('\n').map(packet => JSON.parse(packet)));
const comparePackets = (packet1: Packet, packet2: Packet): Result => {
if (!Array.isArray(packet1) && !Array.isArray(packet2)) {
return packet1 < packet2 ? 'valid' : packet1 === packet2 ? 'continue' : 'invalid';
}
if (!Array.isArray(packet1)) {
return comparePackets([packet1], packet2);
}
if (!Array.isArray(packet2)) {
return comparePackets(packet1, [packet2]);
}
for (let i = 0; i < Math.min(packet1.length, packet2.length); i++) {
const result = comparePackets(packet1[i], packet2[i]);
if (result !== 'continue') {
return result;
}
}
return packet1.length === packet2.length ? 'continue' : packet1.length < packet2.length ? 'valid' : 'invalid';
};
(() => {
const packetsInRightOrder = packets
.map(([packetA, packetB], i) => (comparePackets(packetA, packetB) === 'valid' ? i + 1 : -1))
.filter(index => index > -1);
const sum = packetsInRightOrder.reduce((sum, e) => sum + e, 0);
console.log('PART 1:', sum);
})();
(() => {
const dividerPackets: Packet[] = [[[2]], [[6]]];
const allPackets: Packet[] = [...packets.flat(), ...dividerPackets];
allPackets.sort((a, b) => (comparePackets(a, b) === 'valid' ? -1 : 1));
const dividerPacketIndexProduct = dividerPackets
.map(packet => allPackets.indexOf(packet) + 1)
.reduce((product, e) => product * e, 1);
console.log('PART 2:', dividerPacketIndexProduct);
})();