-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0011. Container With Most Water
39 lines (37 loc) · 1.11 KB
/
0011. Container With Most Water
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
class Solution {
/// public int maxArea(int[] height) {
// int res = 0;
// int l = 0, r = height.length - 1;
// while (l < r) {
// if (height[l] < height[r]) {
// int h = height[l];
// res = Math.max(res, (r - l) * h);
// while (l < r && height[l] <= h) {
// l++;
// }
// }
// else {
// int h = height[r];
// res = Math.max(res, (r - l) * h);
// while (l < r && height[r] <= h) {
// r--;
// }
// }
// }
// return res;
// }
public int maxArea(int[] height) {
int res = 0;
for (int l = 0, r = height.length - 1; l < r;) {
int curr;
if (height[l] > height[r]) {
curr = (r - l) * height[r--];
}
else {
curr = (r - l) * height[l++];
}
res = Math.max(res, curr);
}
return res;
}
}