2025: day03: part 1
This commit is contained in:
parent
9543dcb9b1
commit
8a22da8ba1
6 changed files with 301 additions and 1 deletions
|
|
@ -2,10 +2,12 @@ use criterion::{criterion_group, criterion_main, Criterion};
|
|||
|
||||
use aoc2025::day01;
|
||||
use aoc2025::day02;
|
||||
use aoc2025::day03;
|
||||
|
||||
fn aoc2025_all(c: &mut Criterion) {
|
||||
c.bench_function("day01", |b| b.iter(|| day01::run().unwrap()));
|
||||
c.bench_function("day02", |b| b.iter(|| day02::run().unwrap()));
|
||||
c.bench_function("day03", |b| b.iter(|| day03::run().unwrap()));
|
||||
}
|
||||
|
||||
criterion_group! {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue