Skip to content

Latest commit

 

History

History

number-of-equal-count-substrings

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

< Previous                  Next >

Related Topics

[String] [Counting] [Prefix Sum]

Hints

Hint 1 The brute force solution is to check every substring, which would TLE. How can we improve this solution?
Hint 2 In an equal count substring, the first character appears count times, the second character appears count times, and so on.
Hint 3 The length of an equal count substring is the number of unique characters multiplied by count.
Hint 4 The length of all equal count substrings are multiples of count.