Trapping Rain Water
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining. https://leetcode.com/problems/trapping-rain-water/ Solution Double Link Code submit code class Solution: def trap(self, height: List[int]) -> int: if len(height)<3: return 0 ret = 0 ......