1
1
# LeetCode-in-Java
2
2
3
- [ ![ Maven Central] ( https://img.shields.io/maven-central/v/com.github.javadev/leetcode-in-java?style=flat-square )] ( https://central.sonatype.com/artifact/com.github.javadev/leetcode-in-java/1.37 )
3
+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/com.github.javadev/leetcode-in-java?style=flat-square )] ( https://central.sonatype.com/artifact/com.github.javadev/leetcode-in-java/1.38 )
4
4
[ ![ MIT License] ( http://img.shields.io/badge/license-MIT-green.svg ) ] ( https://github.com/javadev/leetcode-in-java/blob/main/LICENSE )
5
5
[ ![ Java CI] ( https://github.com/javadev/LeetCode-in-Java/actions/workflows/maven.yml/badge.svg )] ( https://github.com/javadev/LeetCode-in-Java/actions/workflows/maven.yml )
6
6
[ ![ Maintainability Rating] ( https://sonarcloud.io/api/project_badges/measure?project=javadev_LeetCode-in-Java&metric=sqale_rating )] ( https://sonarcloud.io/summary/overall?id=javadev_LeetCode-in-Java )
@@ -19,7 +19,7 @@ To configure your Maven project, add the following code to your pom.xml file:
19
19
<dependency >
20
20
<groupId >com.github.javadev</groupId >
21
21
<artifactId >leetcode-in-java</artifactId >
22
- <version >1.37 </version >
22
+ <version >1.38 </version >
23
23
</dependency >
24
24
...
25
25
</dependencies >
@@ -28,7 +28,7 @@ To configure your Maven project, add the following code to your pom.xml file:
28
28
Gradle configuration:
29
29
30
30
``` groovy
31
- implementation 'com.github.javadev:leetcode-in-java:1.37 '
31
+ implementation 'com.github.javadev:leetcode-in-java:1.38 '
32
32
```
33
33
34
34
> [ "For coding interview preparation, LeetCode is one of the best online resource providing a rich library of more than 300 real coding interview questions for you to practice from using one of the 7 supported languages - C, C++, Java, Python, C#, JavaScript, Ruby."] ( https://www.quora.com/How-effective-is-Leetcode-for-preparing-for-technical-interviews )
@@ -1470,7 +1470,7 @@ implementation 'com.github.javadev:leetcode-in-java:1.37'
1470
1470
1471
1471
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1472
1472
|-|-|-|-|-|-
1473
- | 0416 |[ Partition Equal Subset Sum] ( src/main/java/g0401_0500/s0416_partition_equal_subset_sum/Solution.java ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Big_O_Time_O(n\* sums)_ Space_O(n\* sums) | 6 | 99.66
1473
+ | 0416 |[ Partition Equal Subset Sum] ( src/main/java/g0401_0500/s0416_partition_equal_subset_sum/Solution.java ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Big_O_Time_O(n\* sums)_ Space_O(n\* sums) | 5 | 99.88
1474
1474
| 0152 |[ Maximum Product Subarray] ( src/main/java/g0101_0200/s0152_maximum_product_subarray/Solution.java ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(N)_ Space_O(1) | 1 | 92.74
1475
1475
1476
1476
#### Day 14 Sliding Window/Two Pointer
0 commit comments