mirror of
https://github.com/Noratrieb/advent-of-code.git
synced 2026-01-16 18:45:02 +01:00
more
This commit is contained in:
parent
d47ca1f175
commit
d08e7d8c7c
3 changed files with 75 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue