码迷,mamicode.com
首页 > 其他好文 > 详细

11. 盛最多水的容器

时间:2019-01-19 17:40:44      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:def   end   span   color   容器   col   div   ret   int   

11. 盛最多水的容器

方法一

class Solution(object):
    def maxArea(self, height):
        """
        :type height: List[int]
        :rtype: int
        """
        h_len = len(height)
        i = 0
        k = -1
        s = []
        while h_len + k - i >= 1:
            s.append(min(height[i], height[k]) * (h_len + k - i))
            if height[i] <= height[k]:
                i += 1
            else:
                k -= 1
        return max(s)

# 测试用例
"""
输入: [1,8,6,2,5,4,8,3,7]
输出: 49
"""

 

11. 盛最多水的容器

标签:def   end   span   color   容器   col   div   ret   int   

原文地址:https://www.cnblogs.com/xiao-xue-di/p/10292153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!