array icon indicating copy to clipboard operation
array copied to clipboard

Manipulate columnar data efficiently using typed arrays.

Results 1 array issues
Sort by recently updated
recently updated
newest added

Median/quantile/bottoms*/tops* fully sort the data prior to returning the results, which is `O(n log n)`. However, all those could be `O(n)` by using a [selection algorithm](https://en.wikipedia.org/wiki/Selection_algorithm) instead. For an example...