You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<h2><ahref="https://leetcode.com/problems/longest-substring-with-at-least-k-repeating-characters/">395. Longest Substring with At Least K Repeating Characters</a></h2><h3>Medium</h3><hr><div><p>Given a string <code>s</code> and an integer <code>k</code>, return <em>the length of the longest substring of</em> <code>s</code> <em>such that the frequency of each character in this substring is greater than or equal to</em> <code>k</code>.</p>
2
+
3
+
<pdata-pm-slice="1 1 []">if no such substring exists, return 0.</p>
4
+
5
+
<p> </p>
6
+
<p><strongclass="example">Example 1:</strong></p>
7
+
8
+
<pre><strong>Input:</strong> s = "aaabb", k = 3
9
+
<strong>Output:</strong> 3
10
+
<strong>Explanation:</strong> The longest substring is "aaa", as 'a' is repeated 3 times.
11
+
</pre>
12
+
13
+
<p><strongclass="example">Example 2:</strong></p>
14
+
15
+
<pre><strong>Input:</strong> s = "ababbc", k = 2
16
+
<strong>Output:</strong> 5
17
+
<strong>Explanation:</strong> The longest substring is "ababb", as 'a' is repeated 2 times and 'b' is repeated 3 times.
0 commit comments