aboutsummaryrefslogtreecommitdiff
path: root/2022/24/a.rs
diff options
context:
space:
mode:
Diffstat (limited to '2022/24/a.rs')
-rw-r--r--2022/24/a.rs8
1 files changed, 8 insertions, 0 deletions
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 @@
1mod common;
2use common::*;
3
4fn main() {
5 let map = read_map_from_stdin();
6 let result = map.shortest_path(Position::Start, Position::Finish, 0);
7 println!("{result}");
8}

Generated with cgit - Back to sebastiano.tronto.net