Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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/)