leetcode 819

김준오·2021년 11월 15일
0

알고리즘

목록 보기
65/91
post-thumbnail

문제

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

내 풀이

class Solution:
    def mostCommonWord(self, paragraph: str, banned: List[str]) -> str:
        a = paragraph.lower()
        b = ''
        for i in a:
            b += i if i.isalpha() or i is ' ' else ' '
            
        d = defaultdict(int)
        for word in list(b.split()):
            if word not in banned:
                d[word] += 1
        
        return max(d, key = d.get)
profile
jooooon

0개의 댓글

관련 채용 정보