UNPKG

@mojir/lits

Version:

Lits is a pure functional programming language implemented in TypeScript

7 lines (6 loc) 234 B
/** * Calculates the mode (most frequent value(s)) of a dataset * @param values An array of values of any type * @returns An array containing the mode(s) of the dataset */ export declare function mode(values: number[]): number[];