()
| 17 | } |
| 18 | |
| 19 | fn main() { |
| 20 | // let grid = vec![vec![1,2],vec![3,4]]; |
| 21 | // println!("{:?}", surface_area(grid)); |
| 22 | let grid = vec![vec![1,1,1],vec![1,0,1],vec![1,1,1]]; |
| 23 | println!("{:?}", surface_area(grid)); |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected