摘要: 解法一:暴力法 class Solution(object): def maxArea(self, height): """ :type height: List[int] :rtype: int """ lst=[] l=len(height) for i in range(l-1): for j 阅读全文
posted @ 2021-09-07 20:44 luckie 阅读(97) 评论(0) 推荐(0)