deno.land / x / simplestatistic@v7.7.1 / src / max_sorted.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** * The maximum is the highest number in the array. With a sorted array, * the last element in the array is always the largest, so this calculation * can be done in one step, or constant time. * * @param {Array<number>} x input * @returns {number} maximum value * @example * maxSorted([-100, -10, 1, 2, 5]); // => 5 */function maxSorted(x) { return x[x.length - 1];}
export default maxSorted;
simplestatistic

Version Info

Tagged at
2 years ago