From 523e619f3a567aa5269b6a9b1f9ea7f5ddb7ba47 Mon Sep 17 00:00:00 2001 From: Jacob Lorenzen Date: Sun, 13 Aug 2023 08:22:24 +0200 Subject: [PATCH] chore: remove start --- src/day24/mod.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/day24/mod.rs b/src/day24/mod.rs index e4ced44..2181860 100644 --- a/src/day24/mod.rs +++ b/src/day24/mod.rs @@ -20,7 +20,6 @@ struct State { position: Coord, height: i32, width: i32, - start: Coord, end: Coord, minutes: i32, } @@ -218,7 +217,6 @@ fn day24a(path: &str) -> usize { position: (1, 0), width, height, - start: (1, 0), end: (width - 1, height), minutes: 0, };