leetcode——11.盛最多水的容器
Posted taoyuxin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode——11.盛最多水的容器相关的知识,希望对你有一定的参考价值。
双指针法:
class Solution: def maxArea(self, height) -> int: if len(height)<=1: return 0 #双指针法 i,j,S=0,len(height)-1,0 while i<j: if height[i]<height[j]: S=max(S,height[i]*(j-i)) i+=1 else: S=max(S,height[j]*(j-i)) j-=1 return S
执行用时 :148 ms, 在所有 Python3 提交中击败了82.08%的用户
内存消耗 :15.5 MB, 在所有 Python3 提交中击败了5.18%的用户
——2019.10.7
以上是关于leetcode——11.盛最多水的容器的主要内容,如果未能解决你的问题,请参考以下文章
算法leetcode|11. 盛最多水的容器(rust重拳出击)