摘要: https://leetcode.cn/problems/trapping-rain-water-ii/ func trapRainWater(heightMap [][]int) int { m, n := len(heightMap), len(heightMap[0]) maxHeight : 阅读全文
posted @ 2022-06-20 15:53 知道了呀~ 阅读(150) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/zheng-ze-biao-da-shi-pi-pei-lcof/ func isMatch(s string, p string) bool { n:=len(s);m:=len(p) vis:=make([][]bool,0,n+1) / 阅读全文
posted @ 2022-06-20 15:15 知道了呀~ 阅读(52) 评论(0) 推荐(0) 编辑