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

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

Version Info

Tagged at
2 years ago