=============== Getting Started =============== Let's get started with dsalib. Installation ============ If you have installed multiple versions of python then use:: pip3 install dsalib and if you have only installed Python3 then use:: pip install dsalib Usage ===== :: from dsalib import Sorting arr = [21, 2, 3, 31, 45] Sorting.merge_sort(arr) print(arr) **Output**:: [2, 3, 21, 31, 45] Become a contributor ==================== - Fork - Create new branch, representing the changes - Make changes, ensure it's working - Push your own repo - Create PR, describe your changes - Thank You