Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miladsade96/leetcode_with_java
Solving Leetcode Challenges using Java Programming Language and Testing them with JUnit
https://github.com/miladsade96/leetcode_with_java
algorithm algorithms algorithms-and-data-structures data-structures java java-8 javaee leetcode leetcode-java leetcode-solutions
Last synced: 10 days ago
JSON representation
Solving Leetcode Challenges using Java Programming Language and Testing them with JUnit
- Host: GitHub
- URL: https://github.com/miladsade96/leetcode_with_java
- Owner: miladsade96
- License: mit
- Created: 2024-09-02T07:55:16.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-14T15:30:18.000Z (16 days ago)
- Last Synced: 2025-01-14T17:04:06.815Z (16 days ago)
- Topics: algorithm, algorithms, algorithms-and-data-structures, data-structures, java, java-8, javaee, leetcode, leetcode-java, leetcode-solutions
- Language: Java
- Homepage:
- Size: 188 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Logo](assets/LeetcodeWithJava.png)
Solving Leetcode Challenges using Java Programming Language.
A curated collection of Java solutions to LeetCode problems, accompanied by comprehensive unit tests using JUnit. This
repository aims to provide well-structured, efficient, and well-tested Java code for various LeetCode challenges.## Authors
- [Milad Sadeghi DM](https://www.github.com/miladsade96)
## Running Tests
To run tests, run the following command
```bash
mvn clean test
```## Table of Contents
Problems that have been solved so far:
1. [Fibonacci Number](https://leetcode.com/problems/fibonacci-number/description/)
2. [First Letter To Appear Twice](https://leetcode.com/problems/first-letter-to-appear-twice/description/)
3. [Group Anagrams](https://leetcode.com/problems/group-anagrams/description/)
4. [Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array/description/)
5. [Missing Number](https://leetcode.com/problems/missing-number/description/)
6. [Palindrome Number](https://leetcode.com/problems/palindrome-number/description/)
7. [Remove Element](https://leetcode.com/problems/remove-element/description/)
8. [Two Sum](https://leetcode.com/problems/two-sum/description/)
9. [Valid Anagram](https://leetcode.com/problems/valid-anagram/description/)
10. [Remove Duplicates From Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/description/)