Day 16 - Part 1

Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
Anthony Oteri
2023-12-18 12:34:29 -05:00
parent 5b5da8e223
commit 5c5bb4f8d8
10 changed files with 500 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
use day_16::*;
fn main() {
divan::main();
}
#[divan::bench]
fn part1() {
part1::process(divan::black_box(include_str!("../input.txt"))).unwrap();
}
#[divan::bench]
fn part2() {
part2::process(divan::black_box(include_str!("../input.txt"))).unwrap();
}