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
- Host: GitHub
- URL: https://github.com/dylandibeneditto/pyteach
- Owner: dylandibeneditto
- Created: 2025-04-23T02:30:35.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-04-26T05:25:42.000Z (11 months ago)
- Last Synced: 2025-04-26T06:29:49.292Z (11 months ago)
- Topics: learning, leetcode, python, tui
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```