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

@@ -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)]