mirror of
https://github.com/Noratrieb/advent-of-code.git
synced 2026-01-16 10:35:02 +01:00
optimize
This commit is contained in:
parent
45b91e9718
commit
b3bf7b2a97
2 changed files with 52 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue