Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

twitter-puddles.js #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions Numbers/twitter-puddles2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* @param {number[]} height
* @return {number}
*/
var trap = function(height) {
function getGap(list) {
if (list.length < 3) {
return 0;
}
let max1 = -1;
let max2 = -1;
list.forEach((val, index) => {
if (val > list[max1] || max1 === -1) {
max2 = max1;
max1 = index;
} else if (val > list[max2] || max2 === -1) {
max2 = index;
}
});
let sum = getSumBetweenIndexs(max1, max2, list);
let list1 = list.slice(0, Math.min(max1, max2) + 1);
let list2 = list.slice(Math.max(max1, max2));
return getGap(list1) + sum + getGap(list2);

}
let getSumBetweenIndexs = (i1, i2, list) => {
let sum = 0;
let max = Math.max(i1, i2);
let min = Math.min(i1, i2);
let base = list[i2];
for (let i = min + 1; i < max; i ++) {
sum += list[i2] - list[i]
}
return sum;
};
return getGap(height);
};