2021: day01 part 1 & part 2

This commit is contained in:
Antoine Martin 2021-12-01 07:30:10 +01:00
parent 0272809c82
commit 3e991d5ac1
4 changed files with 2048 additions and 3 deletions

View file

@ -2,10 +2,10 @@ use anyhow::Result;
use aoc::DayFunc;
use aoc2021::day00;
use aoc2021::day01;
fn main() -> Result<()> {
let days: &[DayFunc] = &[day00::run];
let days: &[DayFunc] = &[day01::run];
aoc::run(days)
}