leetcode-盛最多水的容器
作者:互联网
class Solution(object):
def maxArea(self, height):
"""
:type height: List[int]
:rtype: int
"""
maxarea=0
for i in range(len(height)-1):
if i==0 or height[i]>height[i-1]:
for j in range(i+1,len(height)):
if height[i]>=height[j] and height[j]*(j-i)>maxarea:
maxarea=height[j]*(j-i)
elif height[i]< height[j] and height[i]*(j-i)>maxarea:
maxarea=height[i]*(j-i)
开始这样,
但我在jupyter里面又是正确的
不用说了,我是个傻子,我没有return…
标签:容器,elif,int,len,height,range,最多水,leetcode,maxarea 来源: https://blog.csdn.net/tinymd/article/details/88067946