1576. Replace All ?'s to Avoid Consecutive Repeating Characters
Easy
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.
Example 1:
Example 2:
Constraints:
1 <= s.length <= 100
s
consist of lowercase English letters and'?'
.
解題
Runtime: 0 ms, faster than 100.00%
Memory Usage: 2.1 MB, less than 87.50%
Last updated