forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_524.java
53 lines (45 loc) · 1.45 KB
/
_524.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.fishercoder.solutions;
import java.util.Collections;
import java.util.List;
/**
* 524. Longest Word in Dictionary through Deleting
*
* Given a string and a string dictionary, find the longest string in the dictionary that
* can be formed by deleting some characters of the given string.
* If there are more than one possible results,
* return the longest word with the smallest lexicographical order.
* If there is no possible result, return the empty string.
Example 1:
Input:
s = "abpcplea", d = ["ale","apple","monkey","plea"]
Output:
"apple"
Example 2:
Input:
s = "abpcplea", d = ["a","b","c"]
Output:
"a"
Note:
All the strings in the input will only contain lower-case letters.
The size of the dictionary won't exceed 1,000.
The length of all the strings in the input won't exceed 1,000.
*/
public class _524 {
public static class Solution1 {
public String findLongestWord(String s, List<String> d) {
Collections.sort(d, (a, b) -> a.length() == b.length() ? a.compareTo(b) : b.length() - a.length());
for (String dictWord : d) {
int i = 0;
for (char c : s.toCharArray()) {
if (i < dictWord.length() && dictWord.charAt(i) == c) {
i++;
}
}
if (i == dictWord.length()) {
return dictWord;
}
}
return "";
}
}
}