Replace All ?'s to Avoid Consecutive Repeating Characters - 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.
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.
Input & Output
Example 1 — Basic Case
$
Input:
s = "?zs"
›
Output:
"azs"
💡 Note:
Replace '?' with 'a'. Since 'a' ≠ 'z', no consecutive repeating characters exist. Result: "azs"
Example 2 — Multiple Question Marks
$
Input:
s = "ubv?w"
›
Output:
"ubvaw"
💡 Note:
Replace '?' with 'a'. Check: 'v' ≠ 'a' and 'a' ≠ 'w', so no consecutive repeats. Result: "ubvaw"
Example 3 — Adjacent Conflicts
$
Input:
s = "?a?"
›
Output:
"bac"
💡 Note:
First '?' cannot be 'a' (next char), so use 'b'. Second '?' cannot be 'a' (prev char), so use 'c'. Result: "bac"
Constraints
- 1 ≤ s.length ≤ 105
- s consists of lowercase English letters and '?' characters
Visualization
Tap to expand
Understanding the Visualization
1
Input
String with '?' characters that need replacement
2
Process
Replace each '?' with a letter that differs from neighbors
3
Output
Valid string with no consecutive repeating characters
Key Takeaway
🎯 Key Insight: With 26 letters available and at most 2 neighbors to avoid, we can always find a valid replacement in constant time
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code