Metadata-Version: 2.1
Name: cpalgo
Version: 0.1.2
Summary: A python library that contains standard competitive programming algorithms for faster access
Home-page: https://github.com/srnarayanaa/cpalgo/blob/main/README.md
Author: Narayanaa S R
Author-email: srnarayanaa@gmail.com
License: BSD
Description: # cpalgo
        
        cpalgo is a Python Library that contains over 100 standard competitive programming algorithms for faster access.
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install cpalgo.
        
        ```bash
        pip install cpalgo
        ```
        
        ## Usage
        
        ```python
        from cpalgo import lcs
        
        string1 = 'algorithms'
        string2 = 'rhythms'
        
        lcs.lcs(string1, string2)    #Longest Common Subsequence
        lcs.lps(string1, string2)    #Longest Palindromic Subsequence
        
        ```
        
        ## Developers
        [Narayanaa S R](https://srnarayanaa.me)
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        [BSD](https://opensource.org/licenses/BSD-3-Clause)
        
        ## Project Status
        This project is expected to be completed by June 2021.
Keywords: competitive programming algorithms
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: BSD License
Description-Content-Type: text/markdown
