mirror of
https://github.com/Noratrieb/advent-of-code.git
synced 2026-01-16 18:45:02 +01:00
day03, faster hash
This commit is contained in:
parent
3e0ef21379
commit
e80cf475a1
5 changed files with 81 additions and 4 deletions
|
|
@ -1,3 +1,5 @@
|
|||
mod p2faster_hash;
|
||||
|
||||
use std::collections::HashMap;
|
||||
|
||||
use helper::Day;
|
||||
|
|
@ -15,6 +17,7 @@ helper::define_variants! {
|
|||
}
|
||||
part2 {
|
||||
basic => crate::part2;
|
||||
fasher_hash => crate::p2faster_hash::part2;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue