Skip to content

Latest commit

 

History

History
17 lines (8 loc) · 469 Bytes

README.md

File metadata and controls

17 lines (8 loc) · 469 Bytes

quicksortjs

Hey, this is an implementation of quicksort on numbers in javascript that I made to work on algorithms and to practice testing in javascript. I am reasonably sure that I am complying with the license (MIT) of jasmine but can remove lib/ if I am in violation after all.

Using the function:

return type - Javascript array []

args - a Javascript array of numbers, ex [1,3,4,5,6]

TODO: Add tests that tell me how fast my implementation is.