Skip to main content

Modern Python LeetCode practice environment with automated problem generation, beautiful data structure visualizations, and comprehensive testing

Project description

LeetCode Practice Environment Generator ๐Ÿš€

tests release Quality Gate Status Security Rating Vulnerabilities codecov pypi downloads python Star โญ Sponsor ๐Ÿ’–

A Python package to generate professional LeetCode practice environments. Features automated problem generation from LeetCode URLs, beautiful data structure visualizations (TreeNode, ListNode, GraphNode), and comprehensive testing with 10+ test cases per problem. Built with professional development practices including CI/CD, type hints, and quality gates.

Table of Contents

What makes this different:

  • ๐Ÿค– LLM-Assisted Workflow: Generate new problems instantly with AI assistance
  • ๐ŸŽจ Visual Debugging: Interactive tree/graph rendering with Graphviz and anytree
  • ๐Ÿงช Production Testing: Comprehensive test suites with edge cases and reproducibility verification
  • ๐Ÿš€ Modern Python: PEP 585/604 type hints, Poetry, and professional tooling
  • ๐Ÿ“Š Quality Assurance: 95%+ test coverage, security scanning, automated linting
  • โšก Powerful CLI: Generate problems anywhere with lcpy command

๐ŸŽฏ What's Included

Current Problem Sets:

  • grind-75 - Essential coding interview questions from Grind 75 โœ… Complete
  • grind - Extended Grind collection including all Grind 75 plus additional problems ๐Ÿšง Partial
  • blind-75 - Original Blind 75 curated list โœ… Complete
  • neetcode-150 - Comprehensive NeetCode 150 problem set ๐Ÿšง Partial
  • algo-master-75 - Curated algorithmic mastery problems ๐Ÿšง Partial

Coverage: 130+ unique problems across all major coding interview topics and difficulty levels.

Note: Some problem sets are partially covered. We're actively working to complete all collections. Contributions welcome!

๐Ÿš€ Quick Start

System Requirements

  • Python 3.10+ - Python runtime
  • Graphviz - Graph visualization library (install guide)
# Install the package
pip install leetcode-py-sdk

# Generate problems anywhere
lcpy gen -n 1                    # Generate Two Sum
lcpy gen -t grind-75             # Generate all Grind 75 problems
lcpy gen -t neetcode-150         # Generate NeetCode 150 problems
lcpy list -t grind-75            # List Grind 75 problems
lcpy list -t blind-75            # List Blind 75 problems

# Start practicing
cd leetcode/two_sum
python -m pytest test_solution.py  # Run tests
# Edit solution.py, then rerun tests

Bulk Generation Example

lcpy gen --problem-tag grind-75 --output leetcode     # Generate all Grind 75 problems
lcpy gen --problem-tag neetcode-150 --output leetcode   # Generate NeetCode 150 problems
lcpy gen --problem-tag blind-75 --output leetcode       # Generate Blind 75 problems
Problem Generation

Bulk generation output showing "Generated problem:" messages for all 75 Grind problems

Problem Generation 2

Generated folder structure showing all 75 problem directories after command execution

๐Ÿ“ Problem Structure

Each problem follows a consistent, production-ready template:

leetcode/two_sum/
โ”œโ”€โ”€ README.md           # Problem description with examples and constraints
โ”œโ”€โ”€ solution.py         # Implementation with type hints and TODO placeholder
โ”œโ”€โ”€ test_solution.py    # Comprehensive parametrized tests (10+ test cases)
โ”œโ”€โ”€ helpers.py          # Test helper functions
โ”œโ”€โ”€ playground.py       # Interactive debugging environment (converted from .ipynb)
โ””โ”€โ”€ __init__.py         # Package marker
README Example

README format that mirrors LeetCode's problem description layout

Solution Boilerplate

Solution boilerplate with type hints and TODO placeholder

Test Example

Comprehensive parametrized tests with 10+ test cases - executable and debuggable in local development environment

Test Logging

Beautiful colorful test output with loguru integration for enhanced debugging and test result visualization

โœจ Key Features

Production-Grade Development Environment

  • Modern Python: PEP 585/604 type hints, snake_case conventions
  • Comprehensive Linting: black, isort, ruff, mypy with nbqa for notebooks
  • High Test Coverage: 10+ test cases per problem including edge cases
  • Beautiful Logging: loguru integration for enhanced test debugging
  • CI/CD Pipeline: Automated testing, security scanning, and quality gates

Enhanced Data Structure Visualization

Professional-grade visualization for debugging complex data structures with dual rendering modes:

  • TreeNode: Beautiful tree rendering with anytree and Graphviz integration
  • ListNode: Clean arrow-based visualization with cycle detection
  • GraphNode: Interactive graph rendering for adjacency list problems
  • DictTree: Box-drawing character trees perfect for Trie implementations

Jupyter Notebook Integration (HTML Rendering)

Tree Visualization

Interactive tree visualization using Graphviz SVG rendering in Jupyter notebooks

LinkedList Visualization

Professional linked list visualization with Graphviz in Jupyter environment

Terminal/Console Output (String Rendering)

Tree String Visualization

Clean ASCII tree rendering using anytree for terminal debugging and logging

LinkedList String Visualization

Simple arrow-based list representation for console output and test debugging

Flexible Notebook Support

  • Template Generation: Creates Jupyter notebooks (.ipynb) by default with rich data structure rendering
  • User Choice: Use jupytext to convert notebooks to Python files, or keep as .ipynb for interactive exploration
  • Repository State: This repo converts them to Python files (.py) for better version control
  • Dual Rendering: Automatic HTML visualization in notebooks, clean string output in terminals
Notebook Example

Interactive multi-cell playground with rich data structure visualization for each problem

๐Ÿ”„ Usage Patterns

CLI Usage (Global Installation)

Perfect for quick problem generation anywhere. See the ๐Ÿ“– Complete CLI Usage Guide for detailed documentation with all options and examples.

๐Ÿ› ๏ธ Development Setup

For working within this repository to generate additional LeetCode problems using LLM assistance:

Development Requirements

  • Python 3.10+ - Modern Python runtime with latest type system features
  • Poetry - Dependency management and packaging
  • Make - Build automation (development workflows)
  • Git - Version control system
  • Graphviz - Graph visualization library (install guide)
# Clone repository for development
git clone https://github.com/wislertt/leetcode-py.git
cd leetcode-py
poetry install

# Generate problems from JSON templates
make p-gen PROBLEM=problem_name
make p-test PROBLEM=problem_name

# Regenerate all existing problems
make gen-all-problems

LLM-Assisted Problem Creation

To extend the problem collection beyond the current catalog, leverage an LLM assistant within your IDE (Cursor, GitHub Copilot Chat, Amazon Q, etc.).

๐Ÿ“– Complete LLM-Assisted Problem Creation Guide - Comprehensive guide with screenshots and detailed workflow.

Quick Start:

# Problem generation commands:
"Add problem 198. House Robber"
"Add problem 198. House Robber. tag: grind"

# Test enhancement commands:
"Enhance test cases for two_sum problem"
"Fix test reproducibility for binary_tree_inorder_traversal"

Required LLM Context: Include these rule files in your LLM context for automated problem generation and test enhancement:

Manual Check: Find problems needing more test cases:

poetry run python -m leetcode_py.tools.check_test_cases --threshold=10

๐Ÿงฐ Helper Classes

  • TreeNode: from leetcode_py import TreeNode

    • Array โ†” tree conversion: TreeNode.from_list([1,2,3]), tree.to_list()
    • Beautiful anytree text rendering and Graphviz SVG for Jupyter
    • Node search: tree.find_node(value)
    • Generic type support: TreeNode[int], TreeNode[str]
  • ListNode: from leetcode_py import ListNode

    • Array โ†” list conversion: ListNode.from_list([1,2,3]), node.to_list()
    • Cycle detection with Floyd's algorithm
    • Graphviz visualization for Jupyter notebooks
    • Generic type support: ListNode[int], ListNode[str]
  • GraphNode: from leetcode_py import GraphNode

    • Adjacency list conversion: GraphNode.from_adjacency_list([[2,4],[1,3],[2,4],[1,3]])
    • Clone detection: original.is_clone(cloned)
    • Graphviz visualization for undirected graphs
    • DFS traversal utilities
  • DictTree: from leetcode_py.data_structures import DictTree

    • Perfect for Trie implementations: DictTree[str]()
    • Beautiful tree rendering with box-drawing characters
    • Graphviz visualization for Jupyter notebooks
    • Generic key type support

๐Ÿ› ๏ธ Commands

CLI Commands (Global)

๐Ÿ“– Complete CLI Usage Guide - Detailed documentation with all options and examples.

# Generate problems
lcpy gen -n 1                       # Single problem by number
lcpy gen -s two-sum                 # Single problem by slug
lcpy gen -t grind-75                # Bulk generation by tag
lcpy gen -t neetcode-150            # Generate NeetCode 150 problems
lcpy gen -n 1 -n 2 -n 3            # Multiple problems
lcpy gen -t grind-75 -d Easy       # Filter by difficulty
lcpy gen -n 1 -o my-problems       # Custom output directory

# List problems
lcpy list                           # All available problems
lcpy list -t grind-75               # Filter by Grind 75 tag
lcpy list -t blind-75               # Filter by Blind 75 tag
lcpy list -t neetcode-150           # Filter by NeetCode 150 tag
lcpy list -d Medium                 # Filter by difficulty

# Scrape problem data
lcpy scrape -n 1                   # Fetch by number
lcpy scrape -s two-sum             # Fetch by slug

Development Commands (Repository)

# Problem-specific operations
make p-test PROBLEM=problem_name    # Test specific problem
make p-gen PROBLEM=problem_name     # Generate problem from JSON template
make p-lint PROBLEM=problem_name    # Lint specific problem

# Bulk operations
make test                           # Run all tests
make lint                           # Lint entire codebase
make gen-all-problems              # Regenerate all problems (destructive)

๐Ÿ—๏ธ Architecture

  • Template-Driven: JSON templates in leetcode_py/cli/resources/leetcode/json/problems/ drive code generation
  • Cookiecutter Integration: Uses leetcode_py/cli/resources/leetcode/{{cookiecutter.problem_name}}/ template for consistent file structure
  • Automated Scraping: LLM-assisted problem data extraction from LeetCode
  • Version Control Friendly: Python files by default, optional notebook support

๐Ÿ“Š Quality Metrics

  • Test Coverage: 95%+ with comprehensive edge case testing (Codecov integration)
  • Security: SonarCloud quality gates, Trivy dependency scanning, Gitleaks secret detection
  • Code Quality: Automated linting with black, isort, ruff, mypy
  • Test Reproducibility: Automated verification that problems can be regenerated consistently
  • CI/CD: GitHub Actions for testing, security, pre-commit hooks, and release automation

Perfect for systematic coding interview preparation with professional development practices and enhanced debugging capabilities.

๐Ÿ’– Support This Project

Star โญ Sponsor ๐Ÿ’–

If you find this project helpful, please consider starring the repo โญ or sponsoring my work ๐Ÿ’–. Your support helps me maintain and improve this project. Thank you!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

leetcode_py_sdk-0.36.6.tar.gz (126.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

leetcode_py_sdk-0.36.6-py3-none-any.whl (251.4 kB view details)

Uploaded Python 3

File details

Details for the file leetcode_py_sdk-0.36.6.tar.gz.

File metadata

  • Download URL: leetcode_py_sdk-0.36.6.tar.gz
  • Upload date:
  • Size: 126.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leetcode_py_sdk-0.36.6.tar.gz
Algorithm Hash digest
SHA256 8db6093d99069d36da2b3344acb33be70672442322ad18a8abf369a67d4f9af1
MD5 8354bde3b8df734ba0e10d5991ff11dc
BLAKE2b-256 a4f1a97abd82a3f32ef064c521d38c353a3ab70f249c45f2f85a48050a3ce789

See more details on using hashes here.

Provenance

The following attestation bundles were made for leetcode_py_sdk-0.36.6.tar.gz:

Publisher: cd.yml on wislertt/leetcode-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leetcode_py_sdk-0.36.6-py3-none-any.whl.

File metadata

File hashes

Hashes for leetcode_py_sdk-0.36.6-py3-none-any.whl
Algorithm Hash digest
SHA256 79b8de7bd2212aac1ab6bdd50b71d3e2b489919810c92323dc9280f9f5949f39
MD5 60b5d76cad7c427a945a95088f1b102f
BLAKE2b-256 ede819b3366bbd39df885bca7257000f3ea41f64265210bf3c1c97a2cdb99a62

See more details on using hashes here.

Provenance

The following attestation bundles were made for leetcode_py_sdk-0.36.6-py3-none-any.whl:

Publisher: cd.yml on wislertt/leetcode-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page