//
pkg.gl
Category
github.com/szhou12/leetcode-go
leetcode
0042-Trapping-Rain-Water
package
0.0.0-20241220224003-b7cf03a90b2b
Repository:
https://github.com/szhou12/leetcode-go.git
Documentation:
pkg.go.dev
Overview
Dependencies
0
Dependents
0
#
README
42. Trapping Rain Water
Solution idea:
Key 1
: 每一列雨水的高度,取决于,该列 左侧最高的柱子和右侧最高的柱子中 较矮的那个柱子的高度。
如何高效解决接雨水问题
代码随想录-42. 接雨水