Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 797 Bytes

CONTRIBUTING.md

File metadata and controls

14 lines (13 loc) · 797 Bytes

Contribution Guidlines

  1. This repo is for leetcode weekly and biweekly contests solutions in C++ .
  2. Name of the folder will be [BiWeekly/Weekly][Contest Number]
    For example : for adding solution of problem 1 of BiWeekly contest 88
    Folder name should be "BiWeekly88"
    File path should be "BiWeekly88/A.cpp"
  3. First line of the code should be url of that problem in comments
    // https://leetcode.com/contest/biweekly-contest-88/problems/remove-letter-to-equalize-frequency/
  4. Create new folders if needed as per convention
  5. There should not be any .exe files
  6. Code should be clean, readable and properly indented.
  7. Code should not be copied and pasted from other places.
  8. Only functions definition should be there as per leetcode IDE.