This commit is contained in:
Spectre 2023-12-04 13:43:34 +01:00
parent 1299527ab2
commit 19e598e07d
10 changed files with 178 additions and 30 deletions

View file

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