Container With the Most Water is a coding problem that involves finding the largest possible area that can be formed by two vertical lines on a graph, bound by the height of the shorter line. This problem can be solved using a two-pointer approach, which involves traversing the array from both sides and keeping track of the maximum area found so far.
Given n
non-negative integers a0, a1, a2, ..., a[n-1]
, where each represents a point at coordinate (i, a[i])
, n
vertical lines are drawn such that the two endpoints of the line i
is at (i, 0)
and (i, ai)
. Find two lines that, together with the x-axis, form a container that can hold the most amount of water possible.
Example
heights
= [3, 9, 4, 8, 2, 6, 1]Constraints
There are two ways to approach the Container With the Most Water technical interview question. You can either take the brute force or the two pointers approach.
In the context of this problem, the size of the 2D container is determined by multiplying its width by its height. The brute force approach is use nested for loops to calculate all possible containers to find the largest one.
To accomplish this, we can iterate over the heights with an outer loop, and form a container with every other height to its right using an inner loop. Each subarray that we generate this way is a possible container - the container's size will be the lower of the two heights multiplied by the distance between the heights.
We can track the max container size as we go and return the max container size at the end of our iteration.
def max_water(heights: list[int]) -> int:
ln = len(heights)
max_area = 0
for left_index in range(ln):
left_height = heights[left_index]
for right_index in range(left_index + 1, ln):
right_height = heights[right_index]
width = right_index - left_index
height = min(left_height, right_height)
area = width * height
max_area = max(area, max_area)
return max_area
1def max_water(heights: list[int]) -> int:
2 ln = len(heights)
3 max_area = 0
4 for left_index in range(ln):
5 left_height = heights[left_index]
6 for right_index in range(left_index + 1, ln):
7 right_height = heights[right_index]
8 width = right_index - left_index
9 height = min(left_height, right_height)
10 area = width * height
11 max_area = max(area, max_area)
12 return max_area
O(n²)
O(1)
. No need for extra space, since we’re just iterating over the matrix.The nested loops produce O(n²)
time complexity.
Although the brute force approach does not repeat any calculations, it ignores useful information that can help eliminate unnecessary calculations. For example, if a container has sides a[i]
and a[j]
such that a[i] < a[j]
, all containers with sides a[i]
to a[i+1], ... a[j-1]
will have a maximum height of a[i]
with a smaller width than j - i
, producing less area than the original container. Thus, these possibilities do not need to be considered when we're looking for maximum area.
Instead of trying every combination, we start the 2 pointers at opposite ends (indexes 0
and n-1
) to represent the sides of the container. After computing the area using the lower height and distance between the pointers, the options are to increment the left pointer or decrement the right pointer.
Because we want to maximize the water contained, move the pointer with the lower height toward the other pointer. If the heights are equal, we can update either pointer because any potential increase in the next height is limited by one of the equal existing heights. The process is repeated until the pointers meet.
def max_water(heights):
left_index = 0
right_index = len(heights) - 1
max_area = 0
while left_index < right_index:
width = right_index - left_index
left_height = heights[left_index]
right_height = heights[right_index]
min_height = min(left_height, right_height)
area = width * min_height
max_area = max(area, max_area)
if left_height <= right_height:
left_index += 1
else:
right_index -= 1
return max_area
1def max_water(heights):
2 left_index = 0
3 right_index = len(heights) - 1
4 max_area = 0
5 while left_index < right_index:
6 width = right_index - left_index
7 left_height = heights[left_index]
8 right_height = heights[right_index]
9 min_height = min(left_height, right_height)
10 area = width * min_height
11 max_area = max(area, max_area)
12 if left_height <= right_height:
13 left_index += 1
14 else:
15 right_index -= 1
16 return max_area
17
O(n)
O(1)
Because the left or right pointer is moved toward the other in each iteration until they meet, the list of integers is traversed once.
interviewing.io is a mock interview practice platform. We've hosted over 100K mock interviews, conducted by senior engineers from FAANG & other top companies. We've drawn on data from these interviews to bring you the best interview prep resource on the web.
Interview prep and job hunting are chaos and pain. We can help. Really.