Skip to content
This repository has been archived by the owner on Aug 28, 2022. It is now read-only.

Latest commit

 

History

History
25 lines (20 loc) · 898 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (20 loc) · 898 Bytes

Contributing Guidelines

Naming Convention

  • Title Case (not camel case, lowercase or uppercase)
  • - or no-space in between the words (not _ , whitespace, or anything else)
Example
heapsort.cpp
Heap-sort.cpp
heap_sort.cpp
heap sort.cpp ❌❌❌
Heap-Sort.cpp
HeapSort.cpp

Here are some suggestions you should be following while contributing to this repository:

  • Always verify if the issue you wish to create already exists or not.
  • Ask for the issue that you plan to complete.
  • Commit message should be of the stated syntax.
  • Do not commit multiple files.
  • In algorithms always commit programs that take dynamic input and more preferably through stdin over reading a file.
  • When naming the functions or variables use meaningfull name instead of a1,a2,a3.
  • Every PR would be reviewed before it gets merged.