- 博客(41)
- 收藏
- 关注
原创 leetcode42.Trapping Rain Water
题目描述:class Solution: def trap(self, height): """ :type height: List[int] :rtype: int """ l, r, res, tmp = 0, len(height)-1, 0, 0 while l < r: ...
2018-04-24 20:26:21
213
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅