https://leetcode.com/problems/most-common-word/description/
https://leetcode.com/articles/most-common-word/
public String mostCommonWord(String paragraph, String[] banned) {
paragraph += ".";
Set<String> banset = new HashSet();
for (String word: banned) banset.add(word);
Map<String, Integer> count = new HashMap();
String ans = "";
int ansfreq = 0;
StringBuilder word = new StringBuilder();
for (char c: paragraph.toCharArray()) {
if (Character.isLetter(c)) {
word.append(Character.toLowerCase(c));
} else if (word.length() > 0) {
String finalword = word.toString();
if (!banset.contains(finalword)) {
count.put(finalword, count.getOrDefault(finalword, 0) + 1);
if (count.get(finalword) > ansfreq) {
ans = finalword;
ansfreq = count.get(finalword);
}
}
word = new StringBuilder();
}
}
return ans;
}
def mostCommonWord(self, paragraph, banned):
banset = set(banned)
count = collections.Counter(
word.strip("!?',;.") for word in paragraph.lower().split())
ans, best = '', 0
for word in count:
if count[word] > best and word not in banset:
ans, best = word, count[word]
return ans
Before start to write code
- first list the main steps/ideas, the state/variable we need track
Don't forget handle the case again after the loop
Do we need do anything after the loop
Problem in the following code:
- no need 2 for loop, i, j
Given a paragraph and a list of banned words, return the most frequent word that is not in the list of banned words. It is guaranteed there is at least one word that isn't banned, and that the answer is unique.
Words in the list of banned words are given in lowercase, and free of punctuation. Words in the paragraph are not case sensitive. The answer is in lowercase.
Example: Input: paragraph = "Bob hit a ball, the hit BALL flew far after it was hit." banned = ["hit"] Output: "ball" Explanation: "hit" occurs 3 times, but it is a banned word. "ball" occurs twice (and no other word does), so it is the most frequent non-banned word in the paragraph. Note that words in the paragraph are not case sensitive, that punctuation is ignored (even if adjacent to words, such as "ball,"), and that "hit" isn't the answer even though it occurs more because it is banned.
Note:
1 <= paragraph.length <= 1000
.1 <= banned.length <= 100
.1 <= banned[i].length <= 10
.- The answer is unique, and written in lowercase (even if its occurrences in
paragraph
may have uppercase symbols, and even if it is a proper noun.) paragraph
only consists of letters, spaces, or the punctuation symbols!?',;.
- Different words in
paragraph
are always separated by a space. - There are no hyphens or hyphenated words.
- Words only consist of letters, never apostrophes or other punctuation symbols.
https://leetcode.com/articles/most-common-word/
public String mostCommonWord(String paragraph, String[] banned) {
paragraph += ".";
Set<String> banset = new HashSet();
for (String word: banned) banset.add(word);
Map<String, Integer> count = new HashMap();
String ans = "";
int ansfreq = 0;
StringBuilder word = new StringBuilder();
for (char c: paragraph.toCharArray()) {
if (Character.isLetter(c)) {
word.append(Character.toLowerCase(c));
} else if (word.length() > 0) {
String finalword = word.toString();
if (!banset.contains(finalword)) {
count.put(finalword, count.getOrDefault(finalword, 0) + 1);
if (count.get(finalword) > ansfreq) {
ans = finalword;
ansfreq = count.get(finalword);
}
}
word = new StringBuilder();
}
}
return ans;
}
def mostCommonWord(self, paragraph, banned):
banset = set(banned)
count = collections.Counter(
word.strip("!?',;.") for word in paragraph.lower().split())
ans, best = '', 0
for word in count:
if count[word] > best and word not in banset:
ans, best = word, count[word]
return ans
Before start to write code
- first list the main steps/ideas, the state/variable we need track
Don't forget handle the case again after the loop
Do we need do anything after the loop
Problem in the following code:
- no need 2 for loop, i, j
public String mostCommonWord(String paragraph, String[] banned) {
Set<String> bannedSet = Arrays.stream(banned).collect(Collectors.toSet());
Map<String, Long> counts = new HashMap<>();
long maxCount = 0;
String mostCommonWord = null;
int i = 0;
while (i < paragraph.length()) {
StringBuilder sb = new StringBuilder();
int j = i;
while (j < paragraph.length()) {
if (Character.isLetter(paragraph.charAt(j))) {
sb.append(paragraph.charAt(j));
} else {
break;
}
j++;
}
String word = sb.toString().toLowerCase();
if (sb.length() != 0 && !bannedSet.contains(word)) {
counts.putIfAbsent(word, 0L);
long count = counts.get(word) + 1;
counts.put(word, count);
if (count > maxCount) {
maxCount = count;
mostCommonWord = word;
}
}
i = j + 1;
}
// System.out.println(counts);
return mostCommonWord;
}