Metadata-Version: 2.1
Name: dsa-alg
Version: 0.1.0
Summary: Datastructures and Algorithm Library
Home-page: https://dsa-alg.readthedocs.io/
Author: Praveen Kumar Rajendran
Author-email: praveenrajendran@gmail.com
License: MIT
Platform: UNKNOWN
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

# Words Counter

A Python library for performing datastructures and algorithm



### Installation

```

pip install dsa-alg

```



### Get started

How to count the number of words in a sentences:



```Python

from dsa-alg import Search



# Call the binary Search algorithm

result = Search.binarySearch([1,2,3],0)

```

