This commit is contained in:
2025-12-08 16:42:42 +01:00
parent b0bde44ff4
commit 6465a1597a
2 changed files with 9 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ fn bench_aoc_7_part1(c: &mut Criterion) {
}
fn bench_aoc_7_part2(c: &mut Criterion) {
let input = black_box(include_str!("../src/aoc/input/full_input_aoc7.txt"));
let input = black_box(include_bytes!("../src/aoc/input/full_input_aoc7.txt"));
c.bench_function("bench_aoc7 part 2", |b| b.iter(|| aoc_7::solve_p2(input)));
}