返回顶部

1189

给你一个字符串 text,你需要使用 text 中的字母来拼凑尽可能多的单词 "balloon"(气球)

字符串 text 中的每个字母最多只能被使用一次。请你返回最多可以拼凑出多少个单词 "balloon"

 

示例 1:

输入:text = "nlaebolko"
输出:1

示例 2:

输入:text = "loonbalxballpoon"
输出:2

class Solution(object):
    def maxNumberOfBalloons(self, text):
        """
        :type text: str
        :rtype: int
        """
        return min(text.count('b'),text.count('a'),text.count('l')/2,text.count('o')/2,text.count('n'))

 

posted @ 2023-10-19 10:56  YuhangLiuCE  阅读(11)  评论(0编辑  收藏  举报