this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

a failing test case!

+6 -2
+6 -2
2023/day01/test.ts
··· 27 27 zoneight234: 14, 28 28 "7pqrstsixteen": 76, 29 29 abone40ijone2onefds: 11, 30 + oneight: 18, 30 31 }; 31 - 32 - assertEquals(p2.answer(Object.keys(lines)), 292); 33 32 34 33 Object.entries(lines).forEach(([line, expected]) => { 35 34 assertEquals(p2.calibrationValue(line), expected); 36 35 }); 36 + 37 + assertEquals( 38 + p2.answer(Object.keys(lines)), 39 + Object.values(lines).reduce((sum, x) => sum + x, 0), 40 + ); 37 41 }); 38 42 39 43 // Deno.test("frames", () => {