11 Container With Most Water – Medium
Problem:
Thoughts:
Solutions:
public class Solution {
public int maxArea(int[] height) {
int left = 0, right = height.length -1;
int max = 0;
while (left < right) {
max = Math.max(max, Math.min(height[left], height[right]) * (right - left));
if (height[left] < height[right]) {
left ++;
}
else {
right --;
}
}
return max;
}
}Last updated