auto commit

This commit is contained in:
CyC2018 2019-01-13 13:15:42 +08:00
parent 35fde6d717
commit 948c1b535e

View File

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