Skip to content

Commit 0d65418

Browse files
authored
Create projection-area-of-3d-shapes.cpp
1 parent e54f422 commit 0d65418

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

C++/projection-area-of-3d-shapes.cpp

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Time: O(n^2)
2+
// Space: O(1)
3+
4+
class Solution {
5+
public:
6+
int projectionArea(vector<vector<int>>& grid) {
7+
int result = 0;
8+
for (int i = 0; i < grid.size(); ++i) {
9+
int max_row = 0;
10+
int max_col = 0;
11+
for (int j = 0; j < grid.size(); ++j) {
12+
if (grid[i][j] > 0) {
13+
++result;
14+
}
15+
max_row = max(max_row, grid[i][j]);
16+
max_col = max(max_col, grid[j][i]);
17+
}
18+
result += max_row + max_col;
19+
}
20+
return result;
21+
}
22+
};

0 commit comments

Comments
 (0)