A clean and minimal Data Structure And Algorithms Library Implemented in Python.
Currently in development process.
Documentation: dsalib
If you have installed multiple versions of python then use:
pip3 install dsaliband if you have only installed Python3 then use:
pip install dsalibfrom dsalib import Sorting
arr = [21, 2, 3, 31, 45]
Sorting.merge_sort(arr)
print(arr)Output:
[2, 3, 21, 31, 45]- Fork
- Create new branch, representing the changes
- Make changes, ensure it's working
- Push your own repo
- Create PR, describe your changes
- Thank You
