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
Replace All ?'s to Avoid Consecutive Repeating INPUT String s = "?zs" ? index 0 z index 1 s index 2 = Unknown (?) = Fixed letter Constraint: No consecutive repeating characters allowed ALGORITHM STEPS 1 Scan character i=0: found '?' at start 2 Check neighbors Left: none, Right: 'z' 3 Pick valid letter Try 'a','b','c'... in order 4 Replace '?' with 'a' 'a' != 'z' (valid!) '?' ---> try 'a' 'a' != right neighbor 'z' OK - Use 'a' FINAL RESULT Output: "azs" a replaced z unchanged s unchanged Verification: 'a' != 'z' -- OK 'z' != 's' -- OK Valid String! Key Insight: Greedy approach works because we only need to avoid matching 2 neighbors (left and right). With 26 letters and at most 2 forbidden choices, we can always find a valid replacement. TutorialsPoint - Replace All ?'s to Avoid Consecutive Repeating Characters | Greedy - Single Pass Replacement
Asked in
Google 15 Facebook 12 Microsoft 8
23.4K Views
Medium Frequency
~15 min Avg. Time
892 Likes
Ln 1, Col 1
Smart Actions
💡 Explanation
AI Ready
💡 Suggestion Tab to accept Esc to dismiss
// Output will appear here after running code
Code Editor Closed
Click the red button to reopen