-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path11-container_with_most_water.py
47 lines (38 loc) · 1.41 KB
/
11-container_with_most_water.py
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
40
41
42
43
44
45
46
47
"""
https://leetcode.com/problems/container-with-most-water/
Strat:
2 pointers, one that starts on left and one on right. Continuously close
in on the container by moving whichever pointer is at the smaller height.
Also, it's *VOLUME* not *AREA*. Thanks for coming to my ted talk.
Stats: O(n) time, O(1) space
Runtime: 116 ms, faster than 46.73% of Python online submissions for Container With Most Water.
Memory Usage: 14.1 MB, less than 16.90% of Python online submissions for Container With Most Water.
"""
class Solution(object):
def maxArea(self, heights):
"""
:type height: List[int]
:rtype: int
"""
length = len(heights)
if length < 2:
return 0
def calculate_vol(l, r):
"""
Calculate the volume bounded by indicies l and r
"""
height = min(heights[l], heights[r])
width = r - l
return height * width
#left and right index pointers
l, r = 0, length - 1
result = 0
while l < r:
#find vol given current l & r pointers
result = max(result, calculate_vol(l, r))
#advance either the left or right pointer
if heights[l] < heights[r]:
l += 1
else:
r -= 1
return result