1576 Replace All 's to Avoid Consecutive Repeating Characters

Опубликовано: 29 Май 2026
на канале: Math Geeks
147
1

Leetcode solving: 1576 Replace All 's to Avoid Consecutive Repeating Characters

Given a string s containing only lower case English letters and the '?' character, convert all the '?' characters into lower case 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.


##############

My other Leetcode solving videos (easy)

   • Leetcode(easy)  

Leetcode solving videos (Medium):

   • Leetcode solving videos (Medium)  

Leetcode solving videos (Hard):

   • Leetcode(hard)  



############