day03, faster hash

This commit is contained in:
nora 2023-12-03 15:23:48 +01:00
parent 3e0ef21379
commit e80cf475a1
5 changed files with 81 additions and 4 deletions

View file

@ -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;
}
}