Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 1.37 KB

CONTRIBUTING.md

File metadata and controls

27 lines (18 loc) · 1.37 KB

Help improve awesome-python-leetcode

Thanks for your interest in the project! Pull Requests are welcome for any level of improvement, from a small typo to a new section, help us make the project better.

Contribution guidelines

Pull requests are accepted only through the contributor branch.

awesome-python-leetcode follows github workflows.

awesome-python-leetcode would be very much happy to receive pull requests. Any form of contribution is appreciated even if it is a typo 😉

Do not be discouraged if the pull request is not accepted, as we have only one developer maintaining the code and he/she must have been busy with some other work.

Procedure

  • Fork the repository 🔀.
  • Checkout to contributor branch 🔃.
  • Create the leetcode problem directory 🍱
    • a. The directory name should follow this convention _[number]_[title]
    • b. The directory should contain a README.md file. This can be used as a template.
    • c. The directory should have a solution.py file containing the solution.
  • Add test cases for your solution ✅.
  • Run test.sh to check if your solution passes the test cases and to also keep the CI pipeline success ⚡.
  • Commit your changes and make a pull request 🔁.