-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.java
31 lines (29 loc) · 1017 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
import java.util.regex.Matcher;
import java.util.regex.Pattern;
class Solution {
private static Pattern pattern = Pattern.compile("[a-z]+");
public String mostCommonWord(String paragraph, String[] banned) {
Set<String> bannedWords = new HashSet<>();
for (String word : banned) {
bannedWords.add(word);
}
Map<String, Integer> counter = new HashMap<>();
Matcher matcher = pattern.matcher(paragraph.toLowerCase());
while (matcher.find()) {
String word = matcher.group();
if (bannedWords.contains(word)) {
continue;
}
counter.put(word, counter.getOrDefault(word, 0) + 1);
}
int max = Integer.MIN_VALUE;
String ans = null;
for (Map.Entry<String, Integer> entry : counter.entrySet()) {
if (entry.getValue() > max) {
max = entry.getValue();
ans = entry.getKey();
}
}
return ans;
}
}