Skip to content

Commit 3c30e2d

Browse files
committed
File(s) Modified: 0011-container-with-most-water.js
Language(s) Used: javascript Submission URL: https://leetcode.com/problems/container-with-most-water/submissions/1016458454/
1 parent 035d9b3 commit 3c30e2d

File tree

1 file changed

+18
-21
lines changed

1 file changed

+18
-21
lines changed
+18-21
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,31 @@
11
/**
22
* https://leetcode.com/problems/container-with-most-water/
3-
* Time O(N) | Space(1)
3+
* Two pointers, Time O(N) | Space(1)
44
* @param {number[]} height
55
* @return {number}
66
*/
7+
78
var maxArea = function (height) {
89
let [left, right, max] = [0, height.length - 1, 0];
910

1011
while (left < right) {
11-
const [leftHeight, rightHeight] = getHeights(height, left, right);
12-
const area = getArea(height, left, right);
13-
14-
max = Math.max(max, area);
15-
16-
const isRightGreater = leftHeight <= rightHeight;
17-
if (isRightGreater) left++;
18-
19-
const isRightLess = rightHeight < leftHeight;
20-
if (isRightLess) right--;
12+
let containerHeight, area;
13+
let containerWidth = right - left;
14+
15+
if (height[left] < height[right]) {
16+
containerHeight = height[left];
17+
left++;
18+
} else {
19+
containerHeight = height[right];
20+
right--;
21+
}
22+
23+
area = containerWidth * containerHeight;
24+
25+
if (area > max) {
26+
max = area;
27+
}
2128
}
2229

2330
return max;
2431
};
25-
26-
const getHeights = (height, left, right) => [height[left], height[right]];
27-
28-
const getArea = (height, left, right) => {
29-
const [leftHeight, rightHeight] = getHeights(height, left, right);
30-
const _height = Math.min(leftHeight, rightHeight);
31-
const width = right - left;
32-
33-
return _height * width;
34-
};

0 commit comments

Comments
 (0)