Day 12 - Part 2

Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
Anthony Oteri
2023-12-12 14:55:22 -05:00
parent 98c9b7e4a9
commit 7b73f3f020
4 changed files with 86 additions and 5 deletions
+2 -2
View File
@@ -6,10 +6,10 @@ fn main() {
#[divan::bench]
fn part1() {
part1::process(divan::black_box(include_str!("../test-input.txt"))).unwrap();
part1::process(divan::black_box(include_str!("../input.txt"))).unwrap();
}
#[divan::bench]
fn part2() {
part2::process(divan::black_box(include_str!("../test-input.txt"))).unwrap();
part2::process(divan::black_box(include_str!("../input.txt"))).unwrap();
}