- 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 | ✅ |
- 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
algorithmsalways 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.