摘要:
问题: 求给定 字符串s 是否为 字符串t 的子序列。 Example 1: Input: s = "abc", t = "ahbgdc" Output: true Example 2: Input: s = "axc", t = "ahbgdc" Output: false Constraints 阅读全文
摘要:
问题: 给定x坐标,上每一个点代表陆地的高度。 求从0~最大坐标之间,累积雨水,最多能储蓄多少水量。 Example 1: Input: height = [0,1,0,2,1,0,1,3,2,1,2,1] Output: 6 Explanation: The above elevation map 阅读全文