Metadata-Version: 2.4
Name: dsatantra
Version: 0.1.0
Summary: A package containing hardcoded C++ code for DSA algorithms
Home-page: 
Author: Utkarsh
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# dsatantra

A Python package that provides hardcoded C++ code for common Data Structures and Algorithms.

## Usage

```python
from dsatantra import get_binary_search_cpp, get_quick_sort_cpp

print(get_binary_search_cpp())
print(get_quick_sort_cpp())
```
