2022: day 01 part 1

This commit is contained in:
Antoine Martin 2022-12-05 22:57:19 +01:00
parent a5fd485c10
commit f3f3b40d47
12 changed files with 2415 additions and 6 deletions

11
aoc2022/src/main.rs Normal file
View file

@ -0,0 +1,11 @@
use anyhow::Result;
use aoc::DayFunc;
use aoc2022::day01;
fn main() -> Result<()> {
let days: &[DayFunc] = &[day01::run];
aoc::run(days)
}