tweak template

This commit is contained in:
Joe Ardent 2022-12-10 11:46:20 -08:00
parent 164e731df0
commit 408b4d9e6f
1 changed files with 2 additions and 2 deletions

View File

@ -8,11 +8,11 @@ fn parse_input(input: &str) -> Vec<INPUT> {
} }
#[aoc_run(dayDAY, part1)] #[aoc_run(dayDAY, part1)]
fn part1(cals: &[INPUT]) -> u32 { fn part1(input: &[INPUT]) -> u32 {
0 0
} }
#[aoc_run(dayDAY, part2)] #[aoc_run(dayDAY, part2)]
fn part2(cals: &[INPUT]) -> u32 { fn part2(input: &[INPUT]) -> u32 {
0 0
} }