본문 바로가기
Problem Solving/리트코드

[리트코드 leetcode] 819. Most Common Word

by ggyongi 2021. 4. 12.
반응형

Problem : leetcode.com/problems/most-common-word/

 

Most Common Word - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

Solution:

class Solution:
    def mostCommonWord(self, paragraph: str, banned: List[str]) -> str:
        words = []
          
        processing = re.sub('[^a-zA-Z]',' ',paragraph).lower().split()
        
        for word in processing:
            if not word in banned:
                words.append(word)
                
        return collections.Counter(words).most_common(1)[0][0]
 

비전공자 네카라 신입 취업 노하우

시행착오 끝에 얻어낸 취업 노하우가 모두 담긴 전자책!

kmong.com

댓글