Init day-09

This commit is contained in:
2025-12-09 08:11:32 +02:00
parent 056a1a1208
commit 838f24ea5d
9 changed files with 134 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
use day_09::*;
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();
}