Initial commit

This commit is contained in:
2023-12-05 11:52:53 +01:00
commit 8fcee096b6
34 changed files with 4217 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { pipe } from "../../../lib/typescript/reducers";
import { tap } from "../../../lib/typescript/combinators";
export const solve = pipe(
tap(console.log),
);

View File

@@ -0,0 +1,6 @@
import { pipe } from "../../../lib/typescript/reducers";
import { tap } from "../../../lib/typescript/combinators";
export const solve = pipe(
tap(console.log),
);

View File

@@ -0,0 +1,4 @@
import { solve as part1 } from "./d01p1";
import { solve as part2 } from "./d01p2";
export { part1, part2 };