Skip to content

Commit c0724a0

Browse files
committed
Signed-off-by: yuduozhou <[email protected]>
1 parent 8f783f7 commit c0724a0

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

ContainsMostWater.java

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
public class Solution {
2+
public int maxArea(int[] height) {
3+
// Start typing your Java solution below
4+
// DO NOT write main() function
5+
int area = 0;
6+
if (height.length < 2){
7+
return area;
8+
}
9+
int left = 0;
10+
int right = height.length - 1;
11+
while (left < right){
12+
int h = (height[left] < height[right]) ? height[left] : height[right];
13+
int currentArea = h * (right - left);
14+
area = (currentArea > area) ? currentArea : area;
15+
if (height[left] < height[right]){
16+
left ++;
17+
}
18+
else {
19+
right --;
20+
}
21+
}
22+
return area;
23+
}
24+
}

0 commit comments

Comments
 (0)