JSPM

algorithmpool

1.2.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q22760F
  • License MIT

A pool of algorithms and data-structures for geeks

Package Exports

  • algorithmpool

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (algorithmpool) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

GeekFarmer

algorithmpool.js

In Progress . . . .

Build Status Coverage Status npm

Installation

NPM

npm install algorithmpool --save

Tests

npm test

How To Use

var algorithmpool = require('algorithmpool');

let arr = [4, 9, 1, 34, 12, 6, 5, 18, 51, 21, -5, -3, 89, -2]
console.log(algorithmpool.quickSort(arr))
output: [-5, -3, -2, 1, 4, 5, 6, 9, 12, 18, 21, 34, 51, 89]