Skip to content

Commit a78f6f1

Browse files
committed
container_with_most_water.cpp
1 parent c189157 commit a78f6f1

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

container_with_most_water.cpp

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
class Solution {
2+
public:
3+
int maxArea(vector<int>& height) {
4+
int left = 0, right = height.size() - 1;
5+
int max = 0;
6+
while (left < right)
7+
{
8+
int water = min(height[left], height[right]) * (right - left);
9+
if (water > max)
10+
max = water;
11+
if (height[left] > height[right])
12+
--right;
13+
else
14+
++left;
15+
}
16+
return max;
17+
}
18+
};

0 commit comments

Comments
 (0)