Last changes

This commit is contained in:
2025-01-22 13:23:04 +02:00
parent d9596becdf
commit 20d6c6bff0
10 changed files with 454 additions and 126 deletions

View File

@@ -0,0 +1,21 @@
use day_08::*;
fn main() {
divan::main();
}
#[divan::bench]
fn part1() {
part1::process(divan::black_box(include_str!(
"../input1.txt",
)))
.unwrap();
}
#[divan::bench]
fn part2() {
part2::process(divan::black_box(include_str!(
"../input2.txt",
)))
.unwrap();
}