[Leetcode] Container With Most Water Python

来源:互联网 发布:电脑怎么激活windows 编辑:程序博客网 时间:2024/05/21 12:34

Given n non-negative integers a1, a2, …, an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms a container, such that the container contains the most water.

Note: You may not slant the container.

class Solution(object):    def maxArea(self, height):        """        :type height: List[int]        :rtype: int        """        maxA = 0        left = 0        right = len(height)-1        while left < right:            ares = min(height[left],height[right])*(right - left)            if height[left] < height[right]:                left += 1            else:                right -= 1            maxA = max(maxA,ares)        return maxA
0 0