摘要:
问题: 给定二维数组,表示各个位置上建筑的高度。 求下雨累计雨量最多为多少? Example: Given the following 3x6 height map: [ [1,4,3,1,3,2], [3,2,1,3,2,4], [2,3,3,2,3,1] ] Return 4. The abov 阅读全文
摘要:
问题: 给定一个字符串,包含左右小括号+字母。 对该字符串进行【括号删减】,使得 字符串中括号完全匹配。"( )" 求最少删减字符,能得到的所有完全匹配的字符串。 Example 1: Input: "()())()" Output: ["()()()", "(())()"] Example 2: 阅读全文