Problem Description
You are given a string s and an integer k. Determine if there exists a substring of length exactly k in s that consists of only one distinct character and is surrounded by different characters on both sides. Return true if such a substring exists; otherwise, return false.
Key Insights
- The substring must have a length of exactly k.
- All characters in the substring must be the same.
- The character immediately before the substring must differ from the character in the substring.
- The character immediately after the substring must also differ from the character in the substring.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the string s.
Space Complexity: O(1), as we only use a constant amount of extra space.
Solution
To solve this problem, we can iterate through the string while checking for potential substrings of length k. For each character in the string, we check if it forms a valid substring of length k with the following conditions:
- All characters in that substring must be the same.
- The character before the substring (if it exists) must be different from the character in the substring.
- The character after the substring (if it exists) must also be different from the character in the substring.
If we find such a substring, we return true. If we finish checking the string without finding one, we return false.