摘要: class Solution(object): def threeSum(self, nums): """ :type nums: List[int] :rtype: List[List[int]] """ length=len(nums) nums=sorted(nums) ... 阅读全文
posted @ 2018-01-07 20:49 PirateLHX 阅读(104) 评论(0) 推荐(0) 编辑
摘要: class Solution(object): def maxArea(self, height): """ :type height: List[int] :rtype: int """ length=len(height) left=0 right=length-1 ... 阅读全文
posted @ 2018-01-07 16:14 PirateLHX 阅读(113) 评论(0) 推荐(0) 编辑