Fix benchmarks for completed 2020

This commit is contained in:
2020-12-25 09:19:28 +01:00
parent 261628b120
commit 4c3640e994
2 changed files with 5 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ use criterion::criterion_main;
use criterion::BenchmarkId;
use criterion::Criterion;
const DAYS_IMPLEMENTED: usize = 22;
const DAYS_IMPLEMENTED: usize = 25;
fn read_input(day: usize) -> Vec<u8> {
let input_path = format!("inputs/{:02}.txt", day);

View File

@@ -70,6 +70,10 @@ impl Solution for Day25 {
result.to_string()
}
fn part2(&mut self, _input: &mut dyn Read) -> String {
"Part 2 is free!".to_string()
}
}
#[cfg(test)]