|
1 | 1 | /**
|
2 | 2 | * https://leetcode.com/problems/container-with-most-water/
|
3 |
| - * Time O(N) | Space(1) |
| 3 | + * Two pointers, Time O(N) | Space(1) |
4 | 4 | * @param {number[]} height
|
5 | 5 | * @return {number}
|
6 | 6 | */
|
| 7 | + |
7 | 8 | var maxArea = function (height) {
|
8 | 9 | let [left, right, max] = [0, height.length - 1, 0];
|
9 | 10 |
|
10 | 11 | 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 | + } |
21 | 28 | }
|
22 | 29 |
|
23 | 30 | return max;
|
24 | 31 | };
|
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