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
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code