2022-03-27 18:35:17 +08:00
< p > Given a string < code > text< / code > , you want to use the characters of < code > text< / code > to form as many instances of the word < strong > " balloon" < / strong > as possible.< / p >
< p > You can use each character in < code > text< / code > < strong > at most once< / strong > . Return the maximum number of instances that can be formed.< / p >
< p > < / p >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 1:< / strong > < / p >
2022-03-27 18:35:17 +08:00
< p > < strong > < img alt = "" src = "https://assets.leetcode.com/uploads/2019/09/05/1536_ex1_upd.JPG" style = "width: 132px; height: 35px;" / > < / strong > < / p >
< pre >
< strong > Input:< / strong > text = " nlaebolko"
< strong > Output:< / strong > 1
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 2:< / strong > < / p >
2022-03-27 18:35:17 +08:00
< p > < strong > < img alt = "" src = "https://assets.leetcode.com/uploads/2019/09/05/1536_ex2_upd.JPG" style = "width: 267px; height: 35px;" / > < / strong > < / p >
< pre >
< strong > Input:< / strong > text = " loonbalxballpoon"
< strong > Output:< / strong > 2
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 3:< / strong > < / p >
2022-03-27 18:35:17 +08:00
< pre >
< strong > Input:< / strong > text = " leetcode"
< strong > Output:< / strong > 0
< / pre >
< p > < / p >
< p > < strong > Constraints:< / strong > < / p >
< ul >
< li > < code > 1 < = text.length < = 10< sup > 4< / sup > < / code > < / li >
< li > < code > text< / code > consists of lower case English letters only.< / li >
< / ul >