Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 624 Bytes

CONTRIBUTING.md

File metadata and controls

28 lines (19 loc) · 624 Bytes

Wanna Contribute to this repository !!

Guidelines we follow :

  • folderName and fileName should be in pascalCase
  • fileName should be same name as the problemName
  • Contribute in any Language
  • Update README.md file simulateneously
  • Try to explain your approach as much as possible (IMPORTANT)
  • Use code Formatter and check if everything is properly aligned
  • Do not leave many empty lines
// Prefer below bracketing Style 1 Instead of later bracketing Style 2: 

//Bracketing Style 1
for (int i: numArray){

}


//Bracketing Style 2
for (int i : numArray)
{

}