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.

Example 1:
Input: s = "?zs"
Output: "azs"
Explanation: There are 25 solutions for this problem. From "azs" to "yzs", all are valid. Only "z" is an invalid modification as the string will consist of consecutive repeating characters in "zzs".

Example 2:
Input: s = "ubv?w"
Output: "ubvaw"
Explanation: There are 24 solutions for this problem. Only "v" and "w" are invalid modifications as the strings will consist of consecutive repeating characters in "ubvvw" and "ubvww".

Example 3:
Input: s = "j?qg??b"
Output: "jaqgacb"

Example 4:
Input: s = "??yw?ipkj?"
Output: "acywaipkja"

Constraints:

  • 1 <= s.length <= 100
  • s contains only lower case English letters and ‘?’.

Solution in python:

class Solution:
    def modifyString(self, s: str) -> str:
        alist = ['a', 'b', 'c']
        arr = list(s)
        for i in range(len(arr)):
            if arr[i] == '?':
                first = ' '
                second = ' '
                if i-1 >= 0:
                    first = arr[i-1]
                if i+1 < len(arr):
                    second = arr[i+1]
                j = 0
                while alist[j] == first or alist[j] == second:
                    j += 1
                arr[i] = alist[j]
        return ''.join(arr)
最后修改日期: 2021年3月18日

留言

撰写回覆或留言

发布留言必须填写的电子邮件地址不会公开。