Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    1297 - Maximum Number of Occurrences of a Substring.

    Medium

    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 and maxSize inclusive.

    Example 1:

    Input: s = "aababcaab", maxLetters = 2, minSize = 3, maxSize = 4

    Output: 2

    Explanation: Substring "aab" has 2 ocurrences in the original string.

    It satisfies the conditions, 2 unique letters and size 3 (between minSize and maxSize).

    Example 2:

    Input: s = "aaaa", maxLetters = 1, minSize = 3, maxSize = 3

    Output: 2

    Explanation: Substring "aaa" occur 2 times in the string. It can overlap.

    Constraints:

    • <code>1 <= s.length <= 10<sup>5</sup></code>

    • 1 &lt;= maxLetters &lt;= 26

    • 1 &lt;= minSize &lt;= maxSize &lt;= min(26, s.length)

    • s consists of only lowercase English letters.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final Integer maxFreq(String s, Integer max, Integer minSize, Integer maxSize)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait