Socket
Socket
Sign inDemoInstall

fast-median

Package Overview
Dependencies
4
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fast-median

Find median of an array in amortized linear time


Version published
Weekly downloads
7
increased by75%
Maintainers
1
Install size
45.2 kB
Created
Weekly downloads
 

Readme

Source

fast-median

Find median element in an arary of numbers

Uses a randomized quickselect to achieve O(n) average case time complexity

Build Status

Install

$ npm install fast-median

Usage

import median from 'fast-median'

median([10, 20, 30, 40])
// 25

median([10, 20, 30, 40, 50])
// 30

median([1])
// 1

API

median :: number a => [a] -> a

median(numbers)

Arguments

  • numbers - An array of numbers

Keywords

FAQs

Last updated on 28 Nov 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc