Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 877 Bytes

CONTRIBUTING.md

File metadata and controls

43 lines (35 loc) · 877 Bytes

Contributing Rules :

  • The leetcode problems must be solved in Java.
  • Properfy name the files (for example if you solve the problem Two Sum, then the file should be named Two_Sum.java and put inside easy difficulty folder).
  • Write proper commit messages
  • Ask for permission before solving a question
  • Do NOT remove other content

Getting Started 🤩🤗:

  • Fork this repo (button on top)
  • Clone on your local machine
git clone https://github.com/Vishwas2/Hacktoberfest2023.git
  • Navigate to project directory.
cd Hacktoberfest2023
  • Create a new Branch
git checkout -b my-new-branch
  • Add
git add .
  • Commit your changes.
git commit -m "Relevant message"
  • Then push
git push origin my-new-branch
  • Create a new pull request from your forked repository