[LeetCode] 1189. Maximum Number of Balloons

김민우·2022년 10월 2일
0

알고리즘

목록 보기
30/189

- Problem

1189. Maximum Number of Balloons

주어진 문자열 textballoon이라는 글자를 최대 몇 개 만들 수 있는지에 대한 문제이다.

- 내 풀이

class Solution:
    def maxNumberOfBalloons(self, text: str) -> int:
        c1 = Counter(text)
        c2 = Counter('balloon')
        answer = 10 ** 4 + 1
        
        c1['l'] //= 2
        c1['o'] //= 2
        
        for key in c2.keys():
            answer = min(answer, c1[key])
        
        return answer

- 결과

profile
Pay it forward.

0개의 댓글