Day 12 - Part 1

Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
Anthony Oteri
2023-12-12 12:40:00 -05:00
parent 74b79ec793
commit 98c9b7e4a9
11 changed files with 1286 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
use day_12::*;
fn main() {
divan::main();
}
#[divan::bench]
fn part1() {
part1::process(divan::black_box(include_str!("../test-input.txt"))).unwrap();
}
#[divan::bench]
fn part2() {
part2::process(divan::black_box(include_str!("../test-input.txt"))).unwrap();
}