From cd96ae7ef92e2b27f69d288a0cd583439db3ca81 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Thu, 24 Jul 2025 04:23:37 +0300 Subject: [PATCH 1/7] Version 1.39 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3c76321a..59dbf527 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # LeetCode-in-Kotlin -[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/leetcode-in-kotlin?style=flat-square)](https://central.sonatype.com/artifact/com.github.javadev/leetcode-in-kotlin/1.38) +[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/leetcode-in-kotlin?style=flat-square)](https://central.sonatype.com/artifact/com.github.javadev/leetcode-in-kotlin/1.39) [![MIT License](http://img.shields.io/badge/license-MIT-green.svg) ](https://github.com/javadev/leetcode-in-kotlin/blob/main/LICENSE) [![Java CI with Maven](https://github.com/javadev/LeetCode-in-Kotlin/actions/workflows/maven.yml/badge.svg)](https://github.com/javadev/LeetCode-in-Kotlin/actions/workflows/maven.yml) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=javadev_LeetCode-in-Kotlin&metric=sqale_rating)](https://sonarcloud.io/summary/overall?id=javadev_LeetCode-in-Kotlin) @@ -19,7 +19,7 @@ To configure your Maven project, add the following code to your pom.xml file: com.github.javadev leetcode-in-kotlin - 1.38 + 1.39 ... @@ -28,7 +28,7 @@ To configure your Maven project, add the following code to your pom.xml file: Gradle configuration: ```groovy -implementation 'com.github.javadev:leetcode-in-kotlin:1.38' +implementation 'com.github.javadev:leetcode-in-kotlin:1.39' ``` > ["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) From d0b9afbbb53b086c8942656dad1b1498c84c03cb Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Thu, 24 Jul 2025 04:24:35 +0300 Subject: [PATCH 2/7] Update build.gradle.kts --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 07b72860..32905f60 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -27,7 +27,7 @@ tasks.test { } group = "com.github.javadev" -version = "1.38-SNAPSHOT" +version = "1.39-SNAPSHOT" description = "leetcode-in-kotlin" java.sourceCompatibility = JavaVersion.VERSION_17 java.targetCompatibility = JavaVersion.VERSION_17 From eb8bcd39629a6a38332bbe87e3b6f018f153fb43 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Thu, 24 Jul 2025 04:25:04 +0300 Subject: [PATCH 3/7] Update pom-central.xml --- pom-central.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom-central.xml b/pom-central.xml index 7113daa9..691dd2df 100644 --- a/pom-central.xml +++ b/pom-central.xml @@ -4,7 +4,7 @@ com.github.javadev leetcode-in-kotlin jar - 1.38 + 1.39 leetcode-in-kotlin Kotlin-based LeetCode algorithm problem solutions, regularly updated https://github.com/javadev/LeetCode-in-Kotlin From cfc1d90eb9ae4aa313e381982e1f724dcbcb3036 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Thu, 24 Jul 2025 04:25:33 +0300 Subject: [PATCH 4/7] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 510e7512..88a34575 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.github.javadev leetcode-in-kotlin jar - 1.38-SNAPSHOT + 1.39-SNAPSHOT leetcode-in-kotlin Kotlin-based LeetCode algorithm problem solutions, regularly updated https://github.com/javadev/LeetCode-in-Kotlin From 7d75453c7aac738eff07634954bce1caa12dd6a4 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Thu, 24 Jul 2025 04:28:41 +0300 Subject: [PATCH 5/7] Update build.gradle.kts --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 32905f60..b596c4af 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,10 +15,10 @@ repositories { dependencies { implementation("org.jetbrains.kotlin:kotlin-stdlib:2.1.21") - testImplementation("org.junit.jupiter:junit-jupiter:[5.13.2,)") + testImplementation("org.junit.jupiter:junit-jupiter:[5.13.3,)") testImplementation("org.hamcrest:hamcrest-core:[3.0,)") testImplementation("org.zapodot:embedded-db-junit-jupiter:2.2.2") - testRuntimeOnly("org.junit.platform:junit-platform-launcher:[1.13.2,)") + testRuntimeOnly("org.junit.platform:junit-platform-launcher:[1.13.3,)") } tasks.test { From 4e8ece313a9ef26585e68373b8c245731333fbeb Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Thu, 24 Jul 2025 04:29:38 +0300 Subject: [PATCH 6/7] Update pom-central.xml --- pom-central.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom-central.xml b/pom-central.xml index 691dd2df..34662278 100644 --- a/pom-central.xml +++ b/pom-central.xml @@ -74,7 +74,7 @@ org.junit.jupiter junit-jupiter-engine - [5.13.2,) + [5.13.3,) @@ -179,19 +179,19 @@ org.junit.jupiter junit-jupiter-api - [5.13.2,) + [5.13.3,) test org.junit.jupiter junit-jupiter-engine - [5.13.2,) + [5.13.3,) test org.junit.platform junit-platform-launcher - [1.13.2,) + [1.13.3,) test From 6228e46bb19ac5dd743e409b03ef566ad140d0c2 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Thu, 24 Jul 2025 04:30:27 +0300 Subject: [PATCH 7/7] Update pom.xml --- pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 88a34575..14290c5f 100644 --- a/pom.xml +++ b/pom.xml @@ -73,7 +73,7 @@ org.junit.jupiter junit-jupiter-engine - [5.13.2,) + [5.13.3,) @@ -140,19 +140,19 @@ org.junit.jupiter junit-jupiter-api - [5.13.2,) + [5.13.3,) test org.junit.jupiter junit-jupiter-engine - [5.13.2,) + [5.13.3,) test org.junit.platform junit-platform-launcher - [1.13.2,) + [1.13.3,) test