Skip to content

Commit 237b54e

Browse files
committed
auto commit
1 parent 21f370a commit 237b54e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notes/Leetcode 题解.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,7 @@ Output: 0
12901290
Explanation: The endWord "cog" is not in wordList, therefore no possible transformation.
12911291
```
12921292

1293-
找出一条从 beginWord 到 endWord 的最短路径,每次移动规定为改变一个字符,并且改变之后的字符串必须在 wordList 中。
1293+
题目描述:找出一条从 beginWord 到 endWord 的最短路径,每次移动规定为改变一个字符,并且改变之后的字符串必须在 wordList 中。
12941294

12951295
```java
12961296
public int ladderLength(String beginWord, String endWord, List<String> wordList) {

0 commit comments

Comments
 (0)