Day 20 - Part 1

Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
Anthony Oteri
2023-12-20 17:08:12 -05:00
parent 1d110c389e
commit ee2bc2bc73
11 changed files with 415 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
use day_20::*;
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();
}