Leetcode Daily Question
@leetcodeDailyQuestionChannel
2.39K
subscribers
517
files
2.53K
links
Why are you asking me to do Leetcode for this CSS job?
Download Telegram
Join
Leetcode Daily Question
2.39K subscribers
Leetcode Daily Question
leetcode.cn
2026-06-22
🟢
1189.maximum-number-of-balloons
🏷️
Tags
#hash_table
#string
#counting
Telegraph
maximum-number-of-balloons
给你一个字符串 text,你需要使用 text 中的字母来拼凑尽可能多的单词 "balloon"(气球)。 字符串 text 中的每个字母最多只能被使用一次。请你返回最多可以拼凑出多少个单词 "balloon"。 示例 1: 输入:text = "nlaebolko" 输出:1 示例 2: 输入:text = "loonbalxballpoon" 输出:2 示例 3: 输入:text = "leetcode" 输出:0 提示:
来源
答案
Leetcode Daily Question
leetcode.com
2026-06-22
🟢
1189.maximum-number-of-balloons
🏷️
Tags
#hash_table
#string
#counting
Telegraph
maximum-number-of-balloons
Given a string text, you want to use the characters of text 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. Example 1: Input: text =…
Source
Solution
Leetcode Daily Question
leetcode.cn
2026-06-23
🔴
3699.number-of-zigzag-arrays-i
🏷️
Tags
Telegraph
number-of-zigzag-arrays-i
给你 三个整数 n、l 和 r。
来源
答案