-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday09.js
50 lines (37 loc) · 1.42 KB
/
day09.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
const numbers = require('./entries/day09.json');
const PREVIOUS_NUMBERS_TO_CONSIDER = 25;
const findSumInPreviousNumbers = (list, index) => {
if (index < PREVIOUS_NUMBERS_TO_CONSIDER) return;
const numberAtIndex = list[index];
const slicedNumbers = list.slice(index - PREVIOUS_NUMBERS_TO_CONSIDER, index);
const firstNumberToGetSumAtIndex = slicedNumbers.find(number => slicedNumbers.includes(numberAtIndex - number));
return firstNumberToGetSumAtIndex;
};
const findContiguousSetWhichSumsToNumber = (list, wantedNumber) => {
let numbersToSum = [];
for (const [index, number] of list.entries()) {
if (number > wantedNumber) continue;
let sum = number;
numbersToSum = [];
for (const nextNumber of list.slice(index + 1)) {
sum += nextNumber;
numbersToSum.push(nextNumber);
if (sum > wantedNumber) break;
if (sum === wantedNumber) return numbersToSum;
}
}
};
// PART 1
let sumFound = null;
let currentIndex = PREVIOUS_NUMBERS_TO_CONSIDER;
do {
sumFound = findSumInPreviousNumbers(numbers, currentIndex);
currentIndex += 1;
} while (!!sumFound);
const firstInvalidNumber = numbers[currentIndex - 1];
console.log(firstInvalidNumber);
// PART 2
const numbersToSumForInvalid = findContiguousSetWhichSumsToNumber(numbers, firstInvalidNumber);
const min = Math.min.apply(null, numbersToSumForInvalid);
const max = Math.max.apply(null, numbersToSumForInvalid);
console.log(min + max);