miserable brute force of 12p1

This commit is contained in:
Spectre 2023-12-12 17:05:00 +01:00
parent e7f87ee6d7
commit 83ec12e183
3 changed files with 63 additions and 3 deletions

View file

@ -8,10 +8,10 @@ use std::time::Instant;
fn main() {
let now = Instant::now();
let Ok(data) = load_actual(2023, 11)
let Ok(data) = load_actual(2023, 12)
else { panic!("No Input Data"); };
let result = aoc2023::day11::Day11.part_2(&data);
let result = aoc2023::day12::Day12.part_1(&data);
let elapsed = now.elapsed();