Skip to content

Latest commit

 

History

History
43 lines (37 loc) · 979 Bytes

README.md

File metadata and controls

43 lines (37 loc) · 979 Bytes

LeetBase

Repository Structure

LeetBase/
|-> solutions/
|   |-> cpp/
|   |-> java/
|   |-> python/
|   |-> ... (Other languages)

Contributing

We welcome contributions! Here's how you can contribute:

  1. Fork the repository.

  2. Clone your fork locally:

    git clone https://github.com/YOUR-USERNAME/LeetBase.git
  3. Create a new branch for your changes:

    git checkout -b feature-branch-name
  4. Make your changes, adding new questions, solutions, or improving documentation.

  5. Stage your changes:

    git add .
  6. Commit your changes:

    git commit -m "Added new solution or question"
  7. Push your changes to the main branch:

    git push origin feature-branch-name
  8. Wait for Review: Submit a pull request and wait for the review.

    • Upon approval, your changes will be merged into the repository.

Thank you for your contribution!