diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-07-09 17:18:36 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-07-09 17:18:36 +0200 |
| commit | ee0cbf2ec592b28dca6d1142639e06de52ff1b3e (patch) | |
| tree | b05c4e9e94588729e7a339b0736a38c559b2d691 /2022/24/a.rs | |
| parent | 9637b5a1f8d10e3003651c5d9006f0e102f74f18 (diff) | |
| download | aoc-ee0cbf2ec592b28dca6d1142639e06de52ff1b3e.tar.gz aoc-ee0cbf2ec592b28dca6d1142639e06de52ff1b3e.zip | |
Day 24 2022
Diffstat (limited to '2022/24/a.rs')
| -rw-r--r-- | 2022/24/a.rs | 8 |
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 @@ | |||
| 1 | mod common; | ||
| 2 | use common::*; | ||
| 3 | |||
| 4 | fn main() { | ||
| 5 | let map = read_map_from_stdin(); | ||
| 6 | let result = map.shortest_path(Position::Start, Position::Finish, 0); | ||
| 7 | println!("{result}"); | ||
| 8 | } | ||
