Metadata-Version: 2.1
Name: python-leetcode-runner
Version: 0.0.1
Summary: A CLI app to run any given Leetcode python solution.
Home-page: https://github.com/tusharsadhwani/python_leetcode_runner
Author: Tushar Sadhwani
Author-email: tushar.sadhwani000@gmail.com
License: UNKNOWN
Platform: UNKNOWN
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

# python_leetcode_runner

## Installation

```console
pip install python_leetcode_runner
```

## Usage

Say your solution file `remove_duplicates.py` looks like this:

```python
class Solution:
    def removeDuplicates(self, nums: List[int]) -> int:
        ...
```

Run the file against sample inputs by doing:

```console
> pyleet remove_duplicates.py
```


