0.1.2 • Published 2 years ago

numeric-sorts v0.1.2

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

numeric-sorts

this package is homework from courses and i hope no one (except me) will use it

numeric-sorts sorting arrays with number in different methods

Installation

$ npm install numeric-sorts

Quick start

import sorts from 'numeric-sorts'

Sorts included

 - bubble sort (sorts.bubble(array))
 - Shell`s sort (sorts.shell(array))
 - selection sort (sorts.selection(array))
 - simple counting sort (sorts.counting(array))