This commit is contained in:
nora 2023-12-09 14:11:16 +01:00
parent 45b91e9718
commit b3bf7b2a97
2 changed files with 52 additions and 0 deletions

View file

@ -1,3 +1,5 @@
mod less_alloc;
use std::ops::Add;
use helper::{Day, Variants};
@ -12,9 +14,11 @@ helper::define_variants! {
day => crate::Day09;
part1 {
basic => crate::part1;
less_alloc => crate::less_alloc::part1;
}
part2 {
basic => crate::part2;
less_alloc => crate::less_alloc::part2;
}
}