-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday9.js
71 lines (64 loc) · 1.56 KB
/
day9.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import { read } from '../../../lib/read.js';
import {
addIndex,
chain,
compose,
flatten,
identity,
map,
reduce,
split,
} from 'ramda';
const data = read('input.txt');
const prepare = fn =>
compose(
addIndex(fn)((item, index) =>
Array(item).fill(index % 2 ? '.' : `${index / 2}`),
),
map(Number),
split(''),
);
const checksum = addIndex(reduce)(
(acc, item, index) => acc + (isNaN(item) ? 0 : item) * index,
0,
);
const lastNonDotElement = list => {
while (list.length > 0) {
const item = list.pop();
if (item !== '.') return item;
}
};
const part1 = compose(
checksum,
list => list.flatMap(item => [item !== '.' ? item : lastNonDotElement(list)]),
prepare(chain),
);
const part2 = compose(
checksum,
flatten,
disk => {
const diskCopy = disk.map(map(identity));
for (let i = disk.length - 1; i >= 0; i--) {
if (disk[i][0] === '.') continue;
const block = disk[i];
const [item] = block;
for (let j = 0; j < diskCopy.length && item !== diskCopy[j][0]; j++) {
const size = diskCopy[j].length - block.length;
if (diskCopy[j][0] !== '.' || size < 0) continue;
const nextIndex = diskCopy.findIndex(([file]) => file === item);
diskCopy[nextIndex] = diskCopy[nextIndex].fill('.');
diskCopy.splice(
j,
1,
block,
...(size > 0 ? [diskCopy[j].slice(0, size)] : []),
);
break;
}
}
return diskCopy;
},
prepare(map),
);
console.log('part 1', part1(data));
console.log('part 2', part2(data));