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)); } }