Files
30-seconds-of-code/test/sortedLastIndex/sortedLastIndex.js
2018-08-02 13:49:33 +03:00

7 lines
259 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;