Day 19 - Part 1

Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
Anthony Oteri
2023-12-19 16:39:19 -05:00
parent 4ff47dfc8b
commit 3952d1d4c0
10 changed files with 1082 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
use day_19::*;
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();
}