Weekly Contest 154
1189. Maximum Number of Balloons
Given a string
text
, you want to use the characters oftext
to form as many instances of the word “balloon” as possible.You can use each character in
text
at most once. Return the maximum number of instances that can be formed.
1
2 >Input: text = "nlaebolko"
>Output: 1
1
2 >Input: text = "loonbalxballpoon"
>Output: 2
1
2 >Input: text = "leetcode"
>Output: 0