-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.java
37 lines (35 loc) · 981 Bytes
/
Solution.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
class Solution {
public String shortestCompletingWord(String licensePlate, String[] words) {
int[] counter = count(licensePlate.toLowerCase());
String ans = null;
int n = 16;
for (String word : words) {
if (n <= word.length()) {
continue;
}
int[] t = count(word);
if (check(counter, t)) {
n = word.length();
ans = word;
}
}
return ans;
}
private int[] count(String word) {
int[] counter = new int[26];
for (char c : word.toCharArray()) {
if (Character.isLetter(c)) {
++counter[c - 'a'];
}
}
return counter;
}
private boolean check(int[] counter1, int[] counter2) {
for (int i = 0; i < 26; ++i) {
if (counter1[i] > counter2[i]) {
return false;
}
}
return true;
}
}