Longest Repeating Character Replacement
Given a string that consists of only uppercase English letters, you can replace any letter in the string with another letter at mostktimes. Find the length of a longest substring containing all repeating letters you can get after performing the above operations.
Note: Both the string's length andkwill not exceed 104.
Example 1:
Example 2:
分析
每次end的count和最大maxcount比较,取更大maxcount。然后while 首尾总长 - maxcount > k,一直缩头。
不知道为什么while不行 for可以
Last updated