mirror of
https://github.com/kristoferssolo/Advent-of-Code.git
synced 2026-02-04 06:12:01 +00:00
Finish day-11 part-1
This commit is contained in:
15
2025/day-11/benches/benchmarks.rs
Normal file
15
2025/day-11/benches/benchmarks.rs
Normal file
@@ -0,0 +1,15 @@
|
||||
use day_11::{part1, part2};
|
||||
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user