days 1 and 2 from last year

This commit is contained in:
Joshua Seigler 2024-12-04 11:14:53 -05:00
commit a71ae9c4d7
No known key found for this signature in database
15 changed files with 2167 additions and 0 deletions

38
src/template/index.ts Normal file
View file

@ -0,0 +1,38 @@
import run from "aocrunner"
const parseInput = (rawInput: string) => rawInput
const part1 = (rawInput: string) => {
const input = parseInput(rawInput)
return
}
const part2 = (rawInput: string) => {
const input = parseInput(rawInput)
return
}
run({
part1: {
tests: [
// {
// input: ``,
// expected: "",
// },
],
solution: part1,
},
part2: {
tests: [
// {
// input: ``,
// expected: "",
// },
],
solution: part2,
},
trimTestInputs: true,
onlyTests: false,
})