feat(template): update daily template

This commit is contained in:
2024-12-01 20:48:08 +02:00
parent 3c899e7782
commit 9020a27a4a
13 changed files with 923 additions and 42 deletions

View File

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