-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path42.py
29 lines (24 loc) · 813 Bytes
/
42.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# https://neetcode.io/problems/trapping-rain-water
# https://leetcode.com/problems/trapping-rain-water/description/
from typing import List
class Solution:
def trap(self, height: List[int]) -> int:
res = 0
l, r = 0, len(height) - 1
while l < r:
lh, rh = height[l], height[r]
area = 0
if lh < rh:
ll = l + 1
while ll < r and height[ll] < lh:
area += lh - height[ll]
ll += 1
l = ll
else:
rr = r - 1
while rr > l and height[rr] < rh:
area += rh - height[rr]
rr -= 1
r = rr
res += area
return res