Skip to content
This repository has been archived by the owner on Feb 21, 2021. It is now read-only.

Latest commit

 

History

History
12 lines (9 loc) · 1.02 KB

CONTRIBUTING.md

File metadata and controls

12 lines (9 loc) · 1.02 KB

Contribution Guidelines

  • Use the GitHub issues tracker to suggest new changes or find tasks to work on.
  • Clone the repository, make changes on your local branch and then create a pull request with those changes. Refer this if it is your first contribution!
  • The algorithms should be roughly divided into directories according to their type (e.g. Sorting, Search, etc). The naming convention should be lower_snake_case.ext (e.g. Search/linear_search/linear_search.cpp).
  • Request a review from one of the maintainers (currently @nikochiko) once your PR is ready.
  • The maintainers will review the PR, and suggest changes if any. Once the PR is ready to go, you will receive a LGTM (Looks good to me)! The PR is approved and will be merged shortly.

General Notes

  • Make sure to test the code yourself before pushing.
  • Documentation along with contributions is appreciated, though not strictly required right now.