-
Notifications
You must be signed in to change notification settings - Fork 0
/
a.test.ts
53 lines (45 loc) · 1.42 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
51
52
53
import { expect, test } from "bun:test";
function zip<T>(arr: T[][]): T[][] {
const result: T[][] = [];
for (let i = 0; i < arr[0].length; i++) {
result.push(arr.map((a) => a[i]));
}
return result;
}
function solution(input: string) {
const grid = input.split("\n").map((line) => line.split(""));
const zipped = zip(grid)
.map((col) => col.join(""))
.map((col) => {
const split = col.split("#").map((c) => c.split(""));
for (const seg of split) {
seg.sort((a, b) => (a < b ? 1 : -1));
}
return split
.map((seg) => seg.join(""))
.join("#")
.split("");
});
const unzipped = zip(zipped);
let ans = 0;
for (let i = 0; i < unzipped.length; i++) {
const j = unzipped.length - i;
const count = unzipped[i].filter((c) => c === "O").length;
ans += count * j;
}
return ans;
}
test("example", async () => {
const file = Bun.file(`${import.meta.dir}/example.txt`);
const input = await file.text();
const actual = solution(input);
const expected = 136;
expect(actual).toBe(expected);
});
test("puzzle input", async () => {
const file = Bun.file(`${import.meta.dir}/input.txt`);
const input = await file.text();
const actual = solution(input);
const expected = 113424;
expect(actual).toBe(expected);
});