Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitec05614

Browse files
authored
Version 1.45
1 parent0c9d017 commitec05614

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

‎README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#LeetCode-in-Java
22

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.44)
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.45)
44
[![MIT License](http://img.shields.io/badge/license-MIT-green.svg)](https://github.com/javadev/leetcode-in-java/blob/main/LICENSE)
55
[![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)
66
[![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:
1919
<dependency>
2020
<groupId>com.github.javadev</groupId>
2121
<artifactId>leetcode-in-java</artifactId>
22-
<version>1.44</version>
22+
<version>1.45</version>
2323
</dependency>
2424
...
2525
</dependencies>
@@ -28,7 +28,7 @@ To configure your Maven project, add the following code to your pom.xml file:
2828
Gradle configuration:
2929

3030
```groovy
31-
implementation 'com.github.javadev:leetcode-in-java:1.44'
31+
implementation 'com.github.javadev:leetcode-in-java:1.45'
3232
```
3333

3434
>["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)

‎build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ test {
2424
}
2525

2626
group='com.github.javadev'
27-
version='1.44-SNAPSHOT'
27+
version='1.45-SNAPSHOT'
2828
description='leetcode-in-java'
2929
java.sourceCompatibility=JavaVersion.VERSION_17
3030

‎pom-central.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>leetcode-in-java</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.44</version>
7+
<version>1.45</version>
88
<name>leetcode-in-java</name>
99
<description>Java-based LeetCode algorithm problem solutions, regularly updated</description>
1010
<url>https://github.com/javadev/LeetCode-in-Java</url>

‎pom-central21.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>leetcode-in-java21</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.44</version>
7+
<version>1.45</version>
88
<name>leetcode-in-java</name>
99
<description>Java-based LeetCode algorithm problem solutions, regularly updated</description>
1010
<url>https://github.com/javadev/LeetCode-in-Java</url>

‎pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>leetcode-in-java</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.44-SNAPSHOT</version>
7+
<version>1.45-SNAPSHOT</version>
88
<name>leetcode-in-java</name>
99
<description>Java-based LeetCode algorithm problem solutions, regularly updated</description>
1010
<url>https://github.com/javadev/LeetCode-in-Java</url>
Binary file not shown.
Binary file not shown.

‎src/main/java/g3201_3300/s3248_snake_in_matrix/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Return the position of the final cell where the snake ends up after executing `c
1818

1919
**Explanation:**
2020

21-
![image](https://leetcode-in-java.github.io/src/main/java/g3201_3300/s3248_snake_in_matrix/image01.png)
21+
![image](https://leetcode-images.github.io/g3201_3300/s3248_snake_in_matrix/image01.png)
2222

2323
**Example 2:**
2424

@@ -28,11 +28,11 @@ Return the position of the final cell where the snake ends up after executing `c
2828

2929
**Explanation:**
3030

31-
![image](https://leetcode-in-java.github.io/src/main/java/g3201_3300/s3248_snake_in_matrix/image02.png)
31+
![image](https://leetcode-images.github.io/g3201_3300/s3248_snake_in_matrix/image02.png)
3232

3333
**Constraints:**
3434

3535
*`2 <= n <= 10`
3636
*`1 <= commands.length <= 100`
3737
*`commands` consists only of`"UP"`,`"RIGHT"`,`"DOWN"`, and`"LEFT"`.
38-
* The input is generated such the snake will not move outside of the boundaries.
38+
* The input is generated such the snake will not move outside of the boundaries.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp