Init day-03

This commit is contained in:
2025-12-03 16:25:09 +02:00
parent 3449dba83e
commit 2ae6b63d6d
8 changed files with 121 additions and 0 deletions

View File

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