-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday2.js
43 lines (39 loc) · 790 Bytes
/
day2.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
import {
chain,
compose,
converge,
juxt,
map,
max,
min,
nth,
reduce,
split,
subtract,
sum,
} from 'ramda';
import { read } from '../../../lib/read.js';
const data = read(`${import.meta.dirname}/input.txt`);
const prepare = compose(map(compose(map(Number), split(/\s+/))), split('\n'));
const part1 = compose(
sum,
map(
compose(
converge(subtract, [nth(0), nth(1)]),
juxt([reduce(max, -Infinity), reduce(min, Infinity)]),
),
),
prepare,
);
const part2 = compose(
sum,
chain(list =>
list.reduce((acc, n, i) => {
const result = list.find((m, j) => i !== j && !(n % m));
return result ? [...acc, n / result] : acc;
}, []),
),
prepare,
);
console.log('part 1', part1(data));
console.log('part 2', part2(data));