g0001_0100.s0011_container_with_most_water.Solution.py Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-all Show documentation
Show all versions of leetcode-in-all Show documentation
104 LeetCode algorithm problem solutions
The newest version!
# #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Array #Greedy #Two_Pointers
# #Algorithm_II_Day_4_Two_Pointers #Big_O_Time_O(n)_Space_O(1)
# #2024_06_04_Time_488_ms_(91.81%)_Space_29.5_MB_(60.76%)
class Solution:
def maxArea(self, height: List[int]) -> int:
max_area = -1
left = 0
right = len(height) - 1
while left < right:
if height[left] < height[right]:
max_area = max(max_area, height[left] * (right - left))
left += 1
else:
max_area = max(max_area, height[right] * (right - left))
right -= 1
return max_area
© 2015 - 2025 Weber Informatics LLC | Privacy Policy