0883. Projection Area of 3D Shapes
Last updated
Last updated
**Input:** grid = [[1,2],[3,4]]
**Output:** 17
**Explanation:** Here are the three projections ("shadows") of the shape made with each axis-aligned plane.**Input:** grid = [[2]]
**Output:** 5**Input:** grid = [[1,0],[0,2]]
**Output:** 8**Input:** grid = [[1,1,1],[1,0,1],[1,1,1]]
**Output:** 14**Input:** grid = [[2,2,2],[2,1,2],[2,2,2]]
**Output:** 21