diff --git a/README.md b/README.md index 0aca14a4f..2d388315a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # LeetCode-in-Java -[![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.44) +[![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.45) [![MIT License](http://img.shields.io/badge/license-MIT-green.svg) ](https://github.com/javadev/leetcode-in-java/blob/main/LICENSE) [![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) [![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: com.github.javadev leetcode-in-java - 1.44 + 1.45 ... @@ -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-java:1.44' +implementation 'com.github.javadev:leetcode-in-java:1.45' ``` > ["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) diff --git a/build.gradle b/build.gradle index 7b32156fa..fb9098850 100644 --- a/build.gradle +++ b/build.gradle @@ -24,7 +24,7 @@ test { } group = 'com.github.javadev' -version = '1.44-SNAPSHOT' +version = '1.45-SNAPSHOT' description = 'leetcode-in-java' java.sourceCompatibility = JavaVersion.VERSION_17 diff --git a/pom-central.xml b/pom-central.xml index 0b86ce923..eb340ffd3 100644 --- a/pom-central.xml +++ b/pom-central.xml @@ -4,7 +4,7 @@ com.github.javadev leetcode-in-java jar - 1.44 + 1.45 leetcode-in-java Java-based LeetCode algorithm problem solutions, regularly updated https://github.com/javadev/LeetCode-in-Java diff --git a/pom-central21.xml b/pom-central21.xml index 1224b55b0..4ec0a661a 100644 --- a/pom-central21.xml +++ b/pom-central21.xml @@ -4,7 +4,7 @@ com.github.javadev leetcode-in-java21 jar - 1.44 + 1.45 leetcode-in-java Java-based LeetCode algorithm problem solutions, regularly updated https://github.com/javadev/LeetCode-in-Java diff --git a/pom.xml b/pom.xml index 2d8f52583..5d588aa03 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.github.javadev leetcode-in-java jar - 1.44-SNAPSHOT + 1.45-SNAPSHOT leetcode-in-java Java-based LeetCode algorithm problem solutions, regularly updated https://github.com/javadev/LeetCode-in-Java diff --git a/src/main/java/g3201_3300/s3248_snake_in_matrix/image01.png b/src/main/java/g3201_3300/s3248_snake_in_matrix/image01.png deleted file mode 100644 index d32550a78..000000000 Binary files a/src/main/java/g3201_3300/s3248_snake_in_matrix/image01.png and /dev/null differ diff --git a/src/main/java/g3201_3300/s3248_snake_in_matrix/image02.png b/src/main/java/g3201_3300/s3248_snake_in_matrix/image02.png deleted file mode 100644 index 00305b026..000000000 Binary files a/src/main/java/g3201_3300/s3248_snake_in_matrix/image02.png and /dev/null differ diff --git a/src/main/java/g3201_3300/s3248_snake_in_matrix/readme.md b/src/main/java/g3201_3300/s3248_snake_in_matrix/readme.md index c468f51d5..dcf5b1a2d 100644 --- a/src/main/java/g3201_3300/s3248_snake_in_matrix/readme.md +++ b/src/main/java/g3201_3300/s3248_snake_in_matrix/readme.md @@ -18,7 +18,7 @@ Return the position of the final cell where the snake ends up after executing `c **Explanation:** -![image](https://leetcode-in-java.github.io/src/main/java/g3201_3300/s3248_snake_in_matrix/image01.png) +![image](https://leetcode-images.github.io/g3201_3300/s3248_snake_in_matrix/image01.png) **Example 2:** @@ -28,11 +28,11 @@ Return the position of the final cell where the snake ends up after executing `c **Explanation:** -![image](https://leetcode-in-java.github.io/src/main/java/g3201_3300/s3248_snake_in_matrix/image02.png) +![image](https://leetcode-images.github.io/g3201_3300/s3248_snake_in_matrix/image02.png) **Constraints:** * `2 <= n <= 10` * `1 <= commands.length <= 100` * `commands` consists only of `"UP"`, `"RIGHT"`, `"DOWN"`, and `"LEFT"`. -* The input is generated such the snake will not move outside of the boundaries. \ No newline at end of file +* The input is generated such the snake will not move outside of the boundaries.