/Hacktoberfest2023

This is for Hacktoberfest 2023. Don't forget to give us a ⭐

Primary LanguageJava

Hacktoberfest2023

This is for Hacktoberfest 2023. Don't forget to give us a ⭐


RULES TO FOLLOW:

  1. Solve any leetcode problem and ensure it isn't solved already. Write the question before solving the problem in the comments.
  2. The problem should only be solved in Java.
  3. Write question inside /* */ before the answer to make it easier for the reader to understand.
  4. Properly name your files. For example, if you solve the problem "Two Sum", name the file Two_Sum.java
  5. Put your solution in the appropriate folder(for example if you have solved a medium question then put it in the medium difficulty folder).
  6. Don't remove other content.
  7. If someone has given the wrong answer and you want to improve it, you can do it.
  8. You can also improve the documentation if you want.
  9. DO NOT create a pull request before the issue is assigned to you.

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

Contribution Guidelines:

  1. Write your solutions in Java.
  2. Properly name your files. For example, if you solve the problem "Two Sum", name the file Two_Sum.java and place it inside the appropriate difficulty folder.
  3. Include test cases with your solutions (if needed).
  4. Follow coding standards and maintain a clean, readable codebase.
  5. Ensure your code is well-documented with comments.