Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 1.06 KB

File metadata and controls

22 lines (13 loc) · 1.06 KB

Contributing Guidelines

Just clone the repository and you are ready to go.

  • Plagarism is strongly discouraged and your own contributions will be most valuable.
  • Strictly use snake_case (underscore_separated) in your file_name and push it in correct folder.
  • Just mention the issue against which the pull request is open by writing Fixes #(your issue number) in the description of the pull request
  • Check for always-open labelled issues.
  • If you want to contribute for an existing code, we prefer that you create an issue before making a PR and link your PR to that issue.

Guidelines for code base :

  • Use 1 tab or 4 spaces indentation.
  • Add the description of your code using multi-line comments at the starting of the code.
  • Add comments to your code in a new line and use single-line comments with 1 tab or 4 spaces indentation.
  • Add minimum 2 test cases along with input and output at the end of your code using multi-line comments.
  • Also, add time and space complexity at the end of your code using multi-line comments.