题解 | #表示数字#

表示数字

https://www.nowcoder.com/practice/637062df51674de8ba464e792d1a0ac6

# first we mark all the * to space in case we do the later replace action affect the original *
ipt = input().replace("*", " ")

res = ""
for i in ipt:
    if i.isdigit():
        res += "*" + i + "*"
    else:
        res += i
# strip all the continuious digits
res = res.replace("**","")

# replace back the * from space
res = res.replace(" ", "*")
print(res)

全部评论

相关推荐

03-15 10:59
已编辑
美团_后端开发(实习员工)
爱写代码的菜code...:哎,自己当时拿到字节offer的时候也在感叹终于拿到了,自己当时最想去的企业就是字节,结果还是阴差阳错去了鹅厂。祝uu一切顺利!!!
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务