Metadata-Version: 2.1
Name: dsa-alg
Version: 0.1.3
Summary: Datastructures and Algorithm Library
Home-page: https://dsa-alg.readthedocs.io/
Author: Praveen Kumar Rajendran
Author-email: praveenrajendran@gmail.com
License: MIT
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# DataStructures and Algorithm
A Python library for performing datastructures and algorithm

### Installation
```
pip install dsa-alg
```

### Get started
Use the Algorithms and datastructures to solve the problem:

```Python
from dsa-alg import Search

# Call the binary Search algorithm
result = Search.binarySearch([1,2,3],0)
```
