2025: day04: part 2
This commit is contained in:
parent
8f2d42bb73
commit
6cf10a0eb5
2 changed files with 41 additions and 8 deletions
|
|
@ -3,11 +3,13 @@ use criterion::{criterion_group, criterion_main, Criterion};
|
|||
use aoc2025::day01;
|
||||
use aoc2025::day02;
|
||||
use aoc2025::day03;
|
||||
use aoc2025::day04;
|
||||
|
||||
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()));
|
||||
c.bench_function("day04", |b| b.iter(|| day04::run().unwrap()));
|
||||
}
|
||||
|
||||
criterion_group! {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue