Replace All ?'s to Avoid Consecutive Repeating Characters — LeetCode 1576 Python Solution

EasyString
Problem
#1576
Pattern
Hash Map
Reading time
2 min

The problem

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.

Example

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".

Python solution

Python
class Solution:
    def modifyString(self, s: str) -> str:
        s = list(s)
        n = len(s)
        for i in range(n):
            if s[i] == "?":
                for c in "abc":
                    if (i and s[i - 1] == c) or (i + 1 < n and s[i + 1] == c):
                        continue
                    s[i] = c
                    break
        return "".join(s)

Complexity

MeasureComplexity
TimeO(n)
SpaceO(1) to O(n) auxiliary

Pattern: Hash Map

Trade memory for time: remember what you have seen so the second pass never happens. LeetCode 1576. Replace All ?'s to Avoid Consecutive Repeating Characters is filed here because the reference solution below belongs to the algorithm family this hub collects, even though its LeetCode tags point elsewhere.

The hash map guide has the Python template for the pattern and the 709 LeetCode problems that use it.

Related problems

Frequently asked questions

How hard is LeetCode 1576. Replace All ?'s to Avoid Consecutive Repeating Characters?
LeetCode 1576. Replace All ?'s to Avoid Consecutive Repeating Characters is rated Easy on LeetCode.
What topics does LeetCode 1576. Replace All ?'s to Avoid Consecutive Repeating Characters cover?
LeetCode 1576. Replace All ?'s to Avoid Consecutive Repeating Characters is tagged String on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview