An open API service indexing awesome lists of open source software.

https://github.com/6a6aqth/version-controlled-java-leetcode-solutions

A repository to showcase my DevOps skills using version control and Java programming. This repo contains solutions to LeetCode challenges where each commit represents the completion of a different challenge. It demonstrates how version control can be used in an iterative development process.
https://github.com/6a6aqth/version-controlled-java-leetcode-solutions

git java leetcode subversion version-control

Last synced: 9 months ago
JSON representation

A repository to showcase my DevOps skills using version control and Java programming. This repo contains solutions to LeetCode challenges where each commit represents the completion of a different challenge. It demonstrates how version control can be used in an iterative development process.

Awesome Lists containing this project

README

          

# Version Controlled LeetCode Solutions in Java

This repository showcases my DevOps skills by combining version control with Java programming. Each commit represents a solution to a LeetCode challenge, and this repository is used to practice simple Git commands as I work through each problem.

## How to Use

1. Clone this repository:
```
git clone https://github.com/your-username/Version-Controlled-LeetCode-Solutions-in-Java.git
```

2. For each LeetCode problem I solve, I delete and update the `src/Solution.java` file to contain my new solution.

3. Commit your changes for each challenge completed:
```
git add .
git commit -m "Completed [Problem Name]"
git push origin main
```

4. Every commit will reflect a new challenge solved, showcasing both my problem-solving skills in Java and my ability to use Git version control to track changes.

## Example of a Commit

Commit message: `Completed Two Sum Problem`

The Java solution for the Two Sum problem is written in the `src/Solution.java` file.

## Technologies Used

- Java 11 or higher
- Git

## Contact

For any questions, feel free to reach out at [qthmichaels@gmail.com](mailto:qthmichaels@gmail.com).