2025: day02: part 1
This commit is contained in:
parent
db1bae8a76
commit
f0dc93b0bb
6 changed files with 123 additions and 1 deletions
|
|
@ -1,9 +1,11 @@
|
|||
use criterion::{criterion_group, criterion_main, Criterion};
|
||||
|
||||
use aoc2025::day01;
|
||||
use aoc2025::day02;
|
||||
|
||||
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()));
|
||||
}
|
||||
|
||||
criterion_group! {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue