This is for Hacktoberfest 2023. Don't forget to give us a ⭐
- Solve any leetcode problem and ensure it isn't solved already. Write the question before solving the problem in the comments.
- The problem should only be solved in Java.
- Put your solution in the appropriate folder(for example if you have solved a medium question then put it in the medium difficulty folder).
- Don't remove other content.
- If someone has given the wrong answer and you want to improve it, you can do it.
- You can also improve the documentation if you want.
- 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
- Write your solutions in Java.
- 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.
- Include test cases with your solutions (if needed).
- Follow coding standards and maintain a clean, readable codebase.
- Ensure your code is well-documented with comments.