3803. Count Residue Prefixes
Easy65.4% acceptance44,762 / 68,487 submissions
Asked by 2 companies
Topics
You are given a string s consisting only of lowercase English letters.
A prefix of s is called a residue if the number of distinct characters in the prefix is equal to len(prefix) % 3.
Return the count of residue prefixes in s.
Example 1:
Input: s = "abc"
Output: 2
Explanation:
- Prefix
"a"has 1 distinct character and length modulo 3 is 1, so it is a residue. - Prefix
"ab"has 2 distinct characters and length modulo 3 is 2, so it is a residue. - Prefix
"abc"does not satisfy the condition. Thus, the answer is 2.
Example 2:
Input: s = "dd"
Output: 1
Explanation:
- Prefix
"d"has 1 distinct character and length modulo 3 is 1, so it is a residue. - Prefix
"dd"has 1 distinct character but length modulo 3 is 2, so it is not a residue. Thus, the answer is 1.
Example 3:
Input: s = "bob"
Output: 2
Explanation:
- Prefix
"b"has 1 distinct character and length modulo 3 is 1, so it is a residue. - Prefix
"bo"has 2 distinct characters and length mod 3 is 2, so it is a residue. Thus, the answer is 2.
Constraints:
1 <= s.length <= 100scontains only lowercase English letters.
Hints
Hint 1
Simulate as described