2025: day01

This commit is contained in:
Antoine Martin 2025-12-01 15:03:54 +01:00
parent d9c8d8155c
commit bf06dccb94
8 changed files with 4574 additions and 1 deletions

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

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