Skip to content

1576. Replace All ?'s to Avoid Consecutive Repeating Characters

Difficulty Topics

Description

Given a string s containing only lowercase English letters and the '?' character, convert all the '?' characters into lowercase letters such that the final string does not contain any consecutive repeating characters. You cannot modify the non '?' characters.

It is guaranteed that there are no consecutive repeating characters in the given string except for '?'.

Return the final string after all the conversions (possibly zero) have been made. If there is more than one solution, return any of them. It can be shown that an answer is always possible with the given constraints.

 

Example 1:

Input: s = "?zs"
Output: "azs"
Explanation: There are 25 solutions for this problem. From "azs" to "yzs", all are valid. Only "z" is an invalid modification as the string will consist of consecutive repeating characters in "zzs".

Example 2:

Input: s = "ubv?w"
Output: "ubvaw"
Explanation: There are 24 solutions for this problem. Only "v" and "w" are invalid modifications as the strings will consist of consecutive repeating characters in "ubvvw" and "ubvww".

 

Constraints:

  • 1 <= s.length <= 100
  • s consist of lowercase English letters and '?'.

Solution

replace-all-s-to-avoid-consecutive-repeating-characters.py
class Solution:
    def modifyString(self, s: str) -> str:
        n = len(s)

        string = "abcdefghijklmnopqrstuvwxyz"
        res = ""

        for i in range(n):

            if s[i] == "?":
                left_idx = ord(res[i-1]) - 97 if i > 0 else -1
                right_idx = ord(s[i+1]) - 97 if i+1 <= n-1 else -1
                idx = (left_idx + 2)%26 if left_idx != -1 else (right_idx + 1)%26

                while (idx == left_idx or idx == right_idx):
                    idx = (idx + 1)%26
                res += string[idx]

            else:
                res += s[i]
        return res