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