{"id":15042691,"url":"https://github.com/miladsade96/leetcode_with_java","last_synced_at":"2026-02-18T03:01:35.557Z","repository":{"id":256190798,"uuid":"850982974","full_name":"miladsade96/leetcode_with_java","owner":"miladsade96","description":"Solving Leetcode Challenges using Java Programming Language and Testing them with JUnit","archived":false,"fork":false,"pushed_at":"2025-03-31T10:37:14.000Z","size":204,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-13T13:17:42.874Z","etag":null,"topics":["algorithm","algorithms","algorithms-and-data-structures","data-structures","java","java-8","javaee","leetcode","leetcode-java","leetcode-solutions"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/miladsade96.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-09-02T07:55:16.000Z","updated_at":"2025-03-31T10:37:17.000Z","dependencies_parsed_at":"2024-12-06T20:28:44.061Z","dependency_job_id":"584312b5-dc7a-4164-a404-a1f9bd1c4a52","html_url":"https://github.com/miladsade96/leetcode_with_java","commit_stats":null,"previous_names":["miladsade96/leetcode_with_java"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/miladsade96/leetcode_with_java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miladsade96%2Fleetcode_with_java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miladsade96%2Fleetcode_with_java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miladsade96%2Fleetcode_with_java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miladsade96%2Fleetcode_with_java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/miladsade96","download_url":"https://codeload.github.com/miladsade96/leetcode_with_java/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miladsade96%2Fleetcode_with_java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29566643,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T00:47:08.760Z","status":"online","status_checked_at":"2026-02-18T02:00:09.468Z","response_time":162,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["algorithm","algorithms","algorithms-and-data-structures","data-structures","java","java-8","javaee","leetcode","leetcode-java","leetcode-solutions"],"created_at":"2024-09-24T20:47:45.081Z","updated_at":"2026-02-18T03:01:35.531Z","avatar_url":"https://github.com/miladsade96.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Logo](assets/LeetcodeWithJava.png)\n\nSolving Leetcode Challenges using Java Programming Language.\n\nA curated collection of Java solutions to LeetCode problems, accompanied by comprehensive unit tests using JUnit. This\nrepository aims to provide well-structured, efficient, and well-tested Java code for various LeetCode challenges.\n\n## Authors\n\n- [Milad Sadeghi DM](https://www.github.com/miladsade96)\n\n## Running Tests\n\nTo run tests, run the following command\n\n```bash\n  mvn clean test\n```\n\n## Table of Contents\n\nProblems that have been solved so far:\n\n1. **Fibonacci Number** - [Leetcode Description](https://leetcode.com/problems/fibonacci-number/description/) - [Solution in Java](src/main/java/fibonacci_number/Solution.java) - [JUnit Tests](src/test/java/fibonacci_number/SolutionTest.java)\n2. **First Letter To Appear Twice** - [Leetcode Description](https://leetcode.com/problems/first-letter-to-appear-twice/description/) - [Solution in java](src/main/java/first_letter_to_appear_twice/Solution.java) - [JUnit Tests](src/test/java/first_letter_to_appear_twice/SolutionTest.java)\n3. **Group Anagrams** - [Leetcode Description](https://leetcode.com/problems/group-anagrams/description/) - [Solution in Java](src/main/java/group_anagrams/Solution.java) - [JUnit Tests](src/test/java/group_anagrams/SolutionTest.java)\n4. **Merge Sorted Array** - [Leetcode Description](https://leetcode.com/problems/merge-sorted-array/description/) - [Solution in Java](src/main/java/merge_sorted_array/Solution.java) - [JUnit Tests](src/test/java/merge_sorted_array/SolutionTest.java)\n5. **Missing Number** - [Leetcode Description](https://leetcode.com/problems/missing-number/description/) - [Solution in Java](src/main/java/missing_number/Solution.java) - [JUnit Tests](src/test/java/missing_number/SolutionTest.java)\n6. **Palindrome Number** - [Leetcode Description](https://leetcode.com/problems/palindrome-number/description/) - [Solution in Java](src/main/java/palindrome_number/Solution.java) - [JUnit Tests](src/test/java/palindrome_number/SolutionTest.java)\n7. **Remove Element** - [Leetcode Description](https://leetcode.com/problems/remove-element/description/) - [Solution in Java](src/main/java/remove_element/Solution.java) - [JUnit Tests](src/test/java/remove_element/SolutionTest.java)\n8. **Two Sum** - [Leetcode Description](https://leetcode.com/problems/two-sum/description/) - [Solution in Java](src/main/java/two_sum/Solution.java) - [JUnit Tests](src/test/java/two_sum/SolutionTest.java)\n9. **Valid Anagram** - [Leetcode Description](https://leetcode.com/problems/valid-anagram/description/) - [Solution in Java](src/main/java/valid_anagrams/Solution.java) - [JUnit Tests](src/test/java/valid_anagrams/SolutionTest.java)\n10. **Remove Duplicates From Sorted Array** - [Leetcode Description](https://leetcode.com/problems/remove-duplicates-from-sorted-array/description/) - [Solution in Java](src/main/java/remove_duplicates_from_sorted_array/Solution.java) - [JUnit Tests](src/test/java/remove_duplicates_from_sorted_array/SolutionTest.java)\n11. **Concatenation Of Array** - [Leetcode Description](https://leetcode.com/problems/concatenation-of-array/description/) - [Solution in Java](src/main/java/concatenation_of_array/Solution.java) - [JUnit Tests](src/test/java/concatenation_of_array/SolutionTest.java)\n12. **Longest Common Prefix** - [Leetcode Description](https://leetcode.com/problems/longest-common-prefix/description/) - [Solution in Java](src/main/java/longest_common_prefix/Solution.java) - [JUnit Tests](src/test/java/longest_common_prefix/SolutionTest.java)\n13. **Majority Element** - [Leetcode Description](https://leetcode.com/problems/majority-element/description/) - [Solution in Java](src/main/java/majority_element/Solution.java) - [JUnit Tests](src/test/java/majority_element/SolutionTest.java)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiladsade96%2Fleetcode_with_java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmiladsade96%2Fleetcode_with_java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiladsade96%2Fleetcode_with_java/lists"}