-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.test.ts
29 lines (26 loc) · 1 KB
/
index.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
import assert from 'node:assert/strict';
import { describe, it } from 'node:test';
import { getInput } from '../../../utils/file.ts';
import { part1, part2 } from './index.ts';
const input = (await getInput(import.meta.dirname)).split('\n').map(Number);
const exampleInput = [16, 10, 15, 5, 1, 11, 7, 19, 6, 12, 4];
const largerExampleInput = [
28, 33, 18, 42, 31, 14, 46, 20, 48, 47, 24, 23, 49, 45, 19, 38, 39, 11, 1, 32, 25, 35, 8, 17, 7,
9, 4, 2, 34, 10, 3,
];
describe('Day 10', () => {
describe('Part 1', () => {
it('should return difference in jolt', () => {
assert.strictEqual(part1(exampleInput), 35);
assert.strictEqual(part1(largerExampleInput), 220);
assert.strictEqual(part1(input), 2380);
});
});
describe('Part 2', () => {
it('should return number of different arrangements', () => {
assert.strictEqual(part2(exampleInput), 8);
assert.strictEqual(part2(largerExampleInput), 19208);
assert.strictEqual(part2(input), 48358655787008);
});
});
});