2020: day03: part 1
This commit is contained in:
parent
6fe3ae40fb
commit
a0ec55dcc4
6 changed files with 458 additions and 1 deletions
|
|
@ -2,10 +2,12 @@ use criterion::{criterion_group, criterion_main, Criterion};
|
|||
|
||||
use aoc2020::day01;
|
||||
use aoc2020::day02;
|
||||
use aoc2020::day03;
|
||||
|
||||
fn aoc2020_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