Skip to content

rajeshberwal/dsalib

A clean and minimal Data Structure And Algorithms Library Implemented in Python.




PyPI version PyPI license PyPI status Documentation Status made-with-python

Currently in development process.

Documentation: dsalib

Install

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

About

Official Repository for dsalib Python Package for Data Structure And Algorithms

Topics

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

No packages published

Languages