Merge pull request #540 from titaneric/master

Fix a little typo
This commit is contained in:
郑永川 2019-01-11 16:22:44 +08:00 committed by GitHub
commit f4e0c8b3e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -256,7 +256,7 @@ Output:
"apple"
```
题目描述:删除 s 中的一些字符,使得它构成字符串列表 d 中的一个字符串,找出能构成的最长字符串。如果有多个相同长度的结果,返回字典序的最字符串。
题目描述:删除 s 中的一些字符,使得它构成字符串列表 d 中的一个字符串,找出能构成的最长字符串。如果有多个相同长度的结果,返回字典序的最字符串。
```java
public String findLongestWord(String s, List<String> d) {