Implement 2023 day 3

This commit is contained in:
2023-12-03 19:45:48 +01:00
parent 4ee6a82056
commit af3ee23050
2 changed files with 182 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ use criterion::Criterion;
use aoc_2023::get_implementation;
/// Number of days we have an implementation to benchmark
const DAYS_IMPLEMENTED: u8 = 2;
const DAYS_IMPLEMENTED: u8 = 3;
fn read_input(day: u8) -> std::io::Result<Vec<u8>> {
let input_path = format!("inputs/{day:02}.txt");