ran npm run tester -> logged invertKeyValues test are invalid

This commit is contained in:
King
2018-01-24 06:29:38 -05:00
parent 496bc38d6e
commit e1a17c769b
270 changed files with 1141 additions and 872 deletions

View File

@ -0,0 +1,9 @@
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;
};
module.exports = sortedLastIndex