본문 바로가기
LeetCode/Problems

LeetCode 819. Most Common Word

by 벤진[Benzene] 2020. 8. 18.

Problem:

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.

 

Code:

class Solution:
    def mostCommonWord(self, paragraph: str, banned: List[str]) -> str:
        words = [word for word in re.sub('[^\w]', ' ', paragraph).lower().split()
                  if word not in banned]
        #regex \w = Word Character
        #^ = not 
        #[^\w] = [^a-zA-Z]
        
        counts = collections.Counter(words)
        
        '''
        example format of counts
        counts --> Counter({'example1': 2, 'example2': 1, 'example3': 1, 'example4': 1})
        counts.most_common(1) --> [('example1', 2)] 
        '''
        
        return counts.most_common(1)[0][0]

모든 문제에 대한 저작권은 LeetCode 회사에 있습니다. [Copyright © 2020 LeetCode]

'LeetCode > Problems' 카테고리의 다른 글

LeetCode 42. Trapping Rain Water [Hard]  (1) 2020.08.24
LeetCode 49. Group Anagrams  (0) 2020.08.19
LeetCode 937. Reorder Data in Log Files  (0) 2020.08.17
LeetCode 628. Maximum Product of Three Numbers  (0) 2020.07.09
LeetCode 91. Decode Ways  (0) 2020.06.21

댓글