Skip to main content
Module

x/simplestatistics/index.js>minSorted

simple statistics for node & browser javascript
Go to Latest
function minSorted
import { minSorted } from "https://deno.land/x/simplestatistics@v7.7.5/index.js";

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.

Examples

minSorted([-100, -10, 1, 2, 5]); // => -100

Parameters

x

input