sortie
Sort algorithms
- bubbleSort
- selectionSort
- insertionSort
- mergeSort
Examples
Install the module with: npm install sortie
var sortie = ; var numbers = 3 1 2;console;// expect [1, 2, 3] var words = 'cat' 'dog' 'bird';console;// expect ['bird', 'cat', 'dog']
License
Copyright (c) 2014 Mustafa Rizvi
Licensed under the MIT license.