From ee0cbf2ec592b28dca6d1142639e06de52ff1b3e Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Wed, 9 Jul 2025 17:18:36 +0200 Subject: Day 24 2022 --- 2022/24/a.rs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 2022/24/a.rs (limited to '2022/24/a.rs') diff --git a/2022/24/a.rs b/2022/24/a.rs new file mode 100644 index 0000000..3e7a078 --- /dev/null +++ b/2022/24/a.rs @@ -0,0 +1,8 @@ +mod common; +use common::*; + +fn main() { + let map = read_map_from_stdin(); + let result = map.shortest_path(Position::Start, Position::Finish, 0); + println!("{result}"); +} -- cgit v1.3