Skip to content

Latest commit

 

History

History
 
 

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

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Given a string s containing only lower case English letters and the '?' character, convert all the '?' characters into lower case 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".

Example 3:

Input: s = "j?qg??b"
Output: "jaqgacb"

Example 4:

Input: s = "??yw?ipkj?"
Output: "acywaipkja"

 

Constraints:

  • 1 <= s.length <= 100

  • s contains only lower case English letters and '?'.

Related Topics:
String

Solution 1.

When we see a s[i] == '?', we set it as s[i - 1] + 1 and round it to 'a' if necessary.

When s[i] == '?' && s[i + 1] != '?', there is a chance of conflict with s[i + 1]. If there is a conflict, we simply increment and round s[i] again.

// OJ: https://leetcode.com/problems/replace-all-s-to-avoid-consecutive-repeating-characters/
// Author: github.com/lzl124631x
// Time: O(N)
// Space: O(1)
class Solution {
public:
    string modifyString(string s) {
        int i = 0, N = s.size();
        while (i < N) {
            while (i < N && s[i] != '?') ++i;
            int c = (i == 0 ? 0 : (s[i - 1] - 'a' + 1) % 26);
            while (i < N && s[i] == '?') {
                s[i] = c + 'a';
                c = (c + 1) % 26;
                if (i + 1 < N && s[i + 1] != '?' && s[i] == s[i + 1]) s[i] = c + 'a';
            }
        }
        return s;
    }
};