1 2 3 4 5 6 7 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}"); }
Generated with cgit - Back to sebastiano.tronto.net