https://github.com/pplmx/algo-py
Algorithm practice in Python
https://github.com/pplmx/algo-py
algorithms algorithms-and-data-structures
Last synced: 6 months ago
JSON representation
Algorithm practice in Python
- Host: GitHub
- URL: https://github.com/pplmx/algo-py
- Owner: pplmx
- Created: 2025-08-12T13:07:19.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2026-01-17T04:12:49.000Z (6 months ago)
- Last Synced: 2026-01-17T17:13:22.625Z (6 months ago)
- Topics: algorithms, algorithms-and-data-structures
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# algo-py
Algorithm practice in Python.
## How to Run Tests
```shell
uv run pytest
```
## How to Add a New Problem
```bash
# python scripts/new_problem.py
uv run scripts/new_problem.py 2 add_two_numbers
uv run scripts/new_problem.py 3 longest-substring-without-repeating-characters
uv run scripts/new_problem.py 3 "longest substring without repeating characters"
uv run scripts/new_problem.py 4 "median-of-two-sorted-arrays"
uv run scripts/new_problem.py 5 "LongestPalindromicSubstring"
```