a.rs (179B)
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 }
aocMy solutions for the Advent of Code | |
| git clone https://git.tronto.net/aoc | |
| Download | Log | Files | Refs | README |
a.rs (179B)
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 }