Init day-01

This commit is contained in:
2025-12-01 13:50:14 +02:00
parent dc25916f7b
commit 2d34e14f7d
7 changed files with 116 additions and 0 deletions

View File

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