Files
30-seconds-of-code/test/sortedLastIndex/sortedLastIndex.js

6 lines
252 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;
};
module.exports = sortedLastIndex;