标签:leetcode 执行 style while 用户 pytho pre color div
双指针法:
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
标签:leetcode 执行 style while 用户 pytho pre color div
原文地址:https://www.cnblogs.com/taoyuxin/p/11632637.html