leetcode 42 接雨水

方法1:雙指針迭代法 public int trap(int[] height) { int left = 0; int right = height.length -1; //ans存最終接雨水的數量 //累加 int ans = 0; int leftMax =
相關文章
相關標籤/搜索