day-03 part-1

This commit is contained in:
2024-12-03 09:21:02 +02:00
parent 3789ea1005
commit d986d89c78
8 changed files with 170 additions and 1 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();
}