An open API service indexing awesome lists of open source software.

https://github.com/komayuki/js-quicksort

try
https://github.com/komayuki/js-quicksort

javascript nodejs quicksort sort-algorithms

Last synced: 7 months ago
JSON representation

try

Awesome Lists containing this project

README

          

# js-quicksort
quick sort is sort algorithm

```
var quickSort = require('js-quicksort');

var list = [41, 3, 24, 4, 22, 7];
quickSort(list)
```