1297. Maximum Number of Occurrences of a Substring
https://leetcode.com/problems/maximum-number-of-occurrences-of-a-substring
Description
Given a string s
, return the maximum number of ocurrences of any substring under the following rules:
The number of unique characters in the substring must be less than or equal to
maxLetters
.The substring size must be between
minSize
andmaxSize
inclusive.
Example 1:
Example 2:
Example 3:
Example 4:
Constraints:
1 <= s.length <= 10^5
1 <= maxLetters <= 26
1 <= minSize <= maxSize <= min(26, s.length)
s
only contains lowercase English letters.
ac
Previous1296. Divide Array in Sets of K Consecutive NumbersNext1298. Maximum Candies You Can Get from Boxes
Last updated