Web app that showcases the important sorting algorithm that we all learn in Computer Science.
Consist Of :
Bubble Sort O(n^2)
Insertion Sort O(n^2)
Selection Sort O(n^2)
Quick Sort O(n log n)
Merge Sort O(n log n)
Things left to do :
- Refactor code into modern vanilla JS
- Bundle the files with webpack or parcel
- Make the website responsive for all type of devices
Inspired by : Clement