1 2 3 4 5 6 7 8
mod common; use common::*; fn main() { let mut map = read_input(); let end = |c: &Cell| c.h == 0; println!("{}", shortest_path_back(&mut map, end)); }
Generated with cgit - Back to sebastiano.tronto.net