Files
30-seconds-of-code/test/sortedLastIndex/sortedLastIndex.js
2018-02-26 20:28:33 +00:00

6 lines
256 B
JavaScript

const sortedLastIndex = (arr, n) => {
const isDescending = arr[0] > arr[arr.length - 1];
const index = arr.reverse().findIndex(el => (isDescending ? n <= el : n >= el));
return index === -1 ? 0 : arr.length - index - 1;
};
module.exports = sortedLastIndex;