day-04 part-1

This commit is contained in:
2024-12-04 09:05:05 +02:00
parent dccc6a2270
commit 2b274352b9
9 changed files with 243 additions and 0 deletions

View File

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