This commit is contained in:
nora 2023-12-03 15:45:36 +01:00
parent d47ca1f175
commit d08e7d8c7c
3 changed files with 75 additions and 1 deletions

View file

@ -1,6 +1,7 @@
mod p2basic;
mod p2faster_hash;
mod p2less_alloc;
mod p2less_with_capacity;
use helper::Day;
@ -18,6 +19,7 @@ helper::define_variants! {
part2 {
basic => crate::p2basic::part2;
faster_hash => crate::p2faster_hash::part2;
p2less_with_capacity => crate::p2less_with_capacity::part2;
less_alloc => crate::p2less_alloc::part2;
}
}