From ca848fe3388d3213ac324e7ba7b5c8244cb24b68 Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Thu, 15 Dec 2022 03:20:01 -0600 Subject: [PATCH] Comment --- 2022/rust/src/day12.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/2022/rust/src/day12.rs b/2022/rust/src/day12.rs index 9197843..1201b1d 100644 --- a/2022/rust/src/day12.rs +++ b/2022/rust/src/day12.rs @@ -133,6 +133,8 @@ fn part2(input: Input) -> Answer { for y in 0..input.map.len() { for x in 0..input.map[y].len() { if input.map[y][x] == 0 { + // TODO: if you care in the future, this can be modified so we + // re-use our scoring graphs to find the shortest path from the end to some a possible_starts.insert((y, x)); } }