-
Notifications
You must be signed in to change notification settings - Fork 0
/
a.test.ts
50 lines (42 loc) · 1.26 KB
/
a.test.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
import { expect, test } from "bun:test";
function solution(input: string) {
const [seedsString, ...mapStrings] = input.split("\n\n");
const seeds = seedsString
.split(":")[1]
.trim()
.split(" ")
.map((n) => Number(n));
const maps = mapStrings.map((map) =>
map
.split("\n")
.slice(1)
.map((string) => string.split(" ").map((n) => Number(n))),
);
const locations = seeds.map((seed) => {
let source = seed;
for (const map of maps) {
const instr = map.find(([_, a, r]) => source <= a + r && source >= a);
if (instr) {
const [b, a, r] = instr;
source = b - a + source;
}
}
return source;
});
const ans = Math.min(...locations);
return ans;
}
test("example", async () => {
const file = Bun.file("./05/example.txt");
const input = await file.text();
const actual = solution(input);
const expected = 35;
expect(actual).toBe(expected);
});
test("puzzle input", async () => {
const file = Bun.file("./05/input.txt");
const input = await file.text();
const actual = solution(input);
const expected = 196167384;
expect(actual).toBe(expected);
});