Problem Link

Description


A string is good if there are no repeated characters.

Given a string sā€‹ā€‹ā€‹ā€‹ā€‹, return the number of good substrings of length three in sā€‹ā€‹ā€‹ā€‹ā€‹ā€‹.

Note that if there are multiple occurrences of the same substring, every occurrence should be counted.

A substring is a contiguous sequence of characters in a string.

Ā 

Example 1:

Input: s = "xyzzaz"
Output: 1
Explanation: There are 4 substrings of size 3: "xyz", "yzz", "zza", and "zaz". 
The only good substring of length 3 is "xyz".

Example 2:

Input: s = "aababcabc"
Output: 4
Explanation: There are 7 substrings of size 3: "aab", "aba", "bab", "abc", "bca", "cab", and "abc".
The good substrings are "abc", "bca", "cab", and "abc".

Ā 

Constraints:

  • 1 <= s.length <= 100
  • sā€‹ā€‹ā€‹ā€‹ā€‹ā€‹ consists of lowercase English letters.

Solution


Python3

class Solution:
    def countGoodSubstrings(self, s: str) -> int:
        n = len(s)
        res = 0
        
        for i in range(n - 2):
            if len(set(s[i:i+3])) == 3:
                res += 1
        
        return res