Travis build: 1447 [cron]

This commit is contained in:
30secondsofcode
2018-01-26 20:13:34 +00:00
parent 93c5393a8a
commit 7fd1a87d47
29 changed files with 485 additions and 1515 deletions

View File

@ -2,8 +2,8 @@ const sortedLastIndex = (arr, n) => {
const isDescending = arr[0] > arr[arr.length - 1];
const index = arr
.map((val, i) => [i, val])
.filter(el => (isDescending ? n >= el[1] : n >= el[1]))
.slice(-1)[0][0];
return index === -1 ? arr.length : index;
.reverse()
.findIndex(el => (isDescending ? n <= el[1] : n >= el[1]));
return index === -1 ? 0 : arr.length - index - 1;
};
module.exports = sortedLastIndex