[leetcode] 1576. Replace All ?‘s to Avoid Consecutive Repeating Characters

Description

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 ‘?’.

分析

题目的意思是:给定一个字符串s,替换s中的问号,使得替换后相邻的字符不相同。
思路很直接,遍历找合适的字符替换问号,需要注意边界的问题。

代码

class Solution:
    def modifyString(self, s: str) -> str:
        res=''
        n=len(s)
        if(n==1 and s=='?'):
            return 'a'
        for i,ch in enumerate(s):
            if(ch=='?'):
                if(i==0 and i<n-1):
                    for c in 'abcdefghijklmnopqrstuvwxyz':
                        if(c!=s[i+1]):
                            res+=c
                            break
                elif(i<n-1):
                    for c in 'abcdefghijklmnopqrstuvwxyz':
                        if(c!=res[-1] and c!=s[i+1]):
                            res+=c
                            break
                elif(i==n-1):
                    for c in 'abcdefghijklmnopqrstuvwxyz':
                        if(c!=res[-1]):
                            res+=c
                            break
            else:
                res+=ch
        return res

参考文献

[LeetCode] Python 3 Solution for Beginners ( 3 letter soln)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

农民小飞侠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值