A curated collection of my Java solutions to LeetCode problems, auto-committed and maintained with helpful metadata and a problem index.
This repository contains my personal solutions to algorithm and data structure problems on LeetCode, written in Java.
Each solution is named after the problem title and includes the original LeetCode problem link as a comment at the top of the file.
The repository auto-commits any changes to .java
files and also updates this README.md
with a table of solved problems.
- 🔄 Auto-commit and push for each solution
- 📝 Auto-generated README table with problem links
- 📄 Clean solution file organization by problem name
- 💬 Problem links included in code comments
# | 🧠 Problem | 📄 Java File | 🔗 LeetCode |
---|---|---|---|
1 | Fizz Buzz | FizzBuzz.java | Link |
2 | Middle Of The Linked List | MiddleOfTheLinkedList.java | Link |
3 | Number Of Steps To Reducea Number To Zero | NumberOfStepsToReduceaNumberToZero.java | Link |
4 | Richest Customer Wealth | RichestCustomerWealth.java | Link |
5 | Running Sum Of1D Array | RunningSumOf1dArray.java | Link |