Skip to content

Commit

Permalink
Complete d18
Browse files Browse the repository at this point in the history
  • Loading branch information
d2weber committed Apr 19, 2023
1 parent 404d702 commit a6f65a8
Show file tree
Hide file tree
Showing 5 changed files with 2,950 additions and 1 deletion.
7 changes: 6 additions & 1 deletion benches/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,13 @@ fn d17(c: &mut Criterion) {
c.bench_function("d17", |b| b.iter(|| solution(black_box(INPUT))));
}

fn d18(c: &mut Criterion) {
use d18::{part1::solution, INPUT};
c.bench_function("d18", |b| b.iter(|| solution(black_box(INPUT))));
}

criterion_group!(
benches, d01, d02, d03, d04, d05, d06, d07, d08, d09, d10, d11, d12, //
d13, d14, d15, d16, d17
d13, d14, d15, d16, d17, d18
);
criterion_main!(benches);
Loading

0 comments on commit a6f65a8

Please sign in to comment.