Day 18 - Part 1

Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
Anthony Oteri
2023-12-18 16:31:45 -05:00
parent 4ff47dfc8b
commit 7f2cf1cb02
11 changed files with 1281 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
use day_18::*;
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();
}