-
Notifications
You must be signed in to change notification settings - Fork 17
/
part-two.js
46 lines (39 loc) · 1.01 KB
/
part-two.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
const { input } = require('./input');
function parse(input) {
// @example
// Game 70: 1 red, 19 green; 4 blue, 6 green; 12 green, 2 red
return input.map((line) => {
const [, id, rest] = /Game (\d+): (.+)$/.exec(line);
// Rounds don't matter, take a list of all groups of cubes picked
const picks = rest.split(/[;,] /);
/** @type {Array<[number, string]>} */
const cubesPicked = picks.map((pick) => {
let num, color;
try {
[, num, color] = /(\d+) (\w+)/.exec(pick);
} catch (e) {
console.log(e);
console.log({ pick, rest });
console.log({ num, color });
process.exit(1);
}
return [parseInt(num, 10), color];
});
return {
id: parseInt(id, 10),
maxCubes: cubesPicked.reduce(
(acc, [num, color]) => {
acc[color] = Math.max(acc[color], num);
return acc;
},
{ blue: 0, red: 0, green: 0 }
),
};
});
}
const games = parse(input);
let sum = 0;
for (let { maxCubes } of games) {
sum += maxCubes.red * maxCubes.blue * maxCubes.green;
}
console.log(sum);