MCPcopy Create free account
hub / github.com/StudyRust/leetcode_rust / main

Function main

892-surface-area-of-3d-shapes.rs:19–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

17}
18
19fn 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected