Changelog¶
v0.2.0¶
- Added
merge()method for implementing merge sort algorithm. insertion()/selection()can now just return the list when the size of list is less than or equal to 1.
v0.1.2¶
- Added support for
tupleof values in bothinsertion()andselection()sorting methods.
v0.1.1¶
- Added validation for checking whether all the elements in a given list are strings or not in both
insertion()andselection()sorting methods.
v0.1.0¶
- First release.
- Added
insertion()method for implementing insertion sort algorithm. - Added
selection()method for implementing selection sort algorithm.