This commit is contained in:
Spectre 2023-12-07 23:04:20 +01:00
parent 19e598e07d
commit 540ff9ae04
5 changed files with 252 additions and 6 deletions

View file

@ -5,8 +5,8 @@ use aoc2023;
use load_data::load;
fn main() {
let Ok(data) = load(2023, 2)
let Ok(data) = load(2023, 5)
else { return; };
print!("{}", aoc2023::day02::Day02.part_2(&data));
print!("{}", aoc2023::day05::Day05.part_1(&data));
}