1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-27 18:50:26 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/至少有 K 个重复字符的最长子串 [longest-substring-with-at-least-k-repeating-characters].html

29 lines
899 B
HTML
Raw Normal View History

2022-03-27 20:56:26 +08:00
<p>给你一个字符串 <code>s</code> 和一个整数 <code>k</code> ,请你找出 <code>s</code> 中的最长子串, 要求该子串中的每一字符出现次数都不少于 <code>k</code> 。返回这一子串的长度。</p>
<p> </p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>s = "aaabb", k = 3
<strong>输出:</strong>3
<strong>解释:</strong>最长子串为 "aaa" ,其中 'a' 重复了 3 次。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>s = "ababbc", k = 2
<strong>输出:</strong>5
<strong>解释:</strong>最长子串为 "ababb" ,其中 'a' 重复了 2 次, 'b' 重复了 3 次。</pre>
<p> </p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 <= s.length <= 10<sup>4</sup></code></li>
<li><code>s</code> 仅由小写英文字母组成</li>
<li><code>1 <= k <= 10<sup>5</sup></code></li>
</ul>