()
| 1 | fn main() { |
| 2 | let paths = vec!( |
| 3 | vec!("London".to_string(), "New York".to_string()), |
| 4 | vec!("New York".to_string(), "Lima".to_string()), |
| 5 | vec!("Lima".to_string(), "Sao Paulo".to_string()) |
| 6 | ); |
| 7 | println!("{:?}", dest_city(paths)); |
| 8 | } |
| 9 | |
| 10 | pub fn dest_city(paths: Vec<Vec<String>>) -> String { |
| 11 | let mut res = vec!(); |
nothing calls this directly
no outgoing calls
no test coverage detected