你領500元現金了嗎? 點選我的連結成功開樂天帳戶+登入樂天網銀APP,拿500元現金! 樂天帳戶好康在這 : · 使用行動支付5次,享次月活儲年息1.35%存額無上限 · VIP享每月免費跨提/轉共16次 · 提領日幣手續費優惠8次/月 (推薦序號: JGONGL)
https://www.rakuten-bank.com.tw/s/R775 Trapping Rain Water - LeetCode
Can you solve this real interview question? Trapping Rain Water - Given n non-negative integers representing an…leetcode.com var trap = function(height) {
let n = height.length, left = 0, right = n - 1, left_max = 0, right_max = 0, water = 0;
while (left <= right) {
if (height[left] <= height[right]) {
if (height[left] > left_max) left_max = height[left];
else water += left_max - height[left];
left++;
} else {
if (height[right] > right_max) right_max = height[right];
else water += right_max - height[right];
right--;
}
}
return water;
}