An open API service indexing awesome lists of open source software.

https://github.com/dylandibeneditto/pyteach

A local version of LeetCode for beginners in Python
https://github.com/dylandibeneditto/pyteach

learning leetcode python tui

Last synced: 2 months ago
JSON representation

A local version of LeetCode for beginners in Python

Awesome Lists containing this project

README

          

# PyTeach

Similar to Leetcode, a local solution to develop your python skills.

## Installation

```bash
git clone https://github.com/dylandibeneditto/pyteach ; cd pyteach
```

### Creating a Challenge

```bash
python tutor/tutor.py
```

Open your editor to the `challenge.py` file in the new `pyteach` folder.
Now you can code out the challenge in the `challenge.py` file.

> The runner calls the function in the `challenge.py` file, so there's no need to create a main function

### Testing your `challenge.py`

```bash
python run.py
```