题解 | #字符串排序#

字符串排序

https://www.nowcoder.com/practice/5190a1db6f4f4ddb92fd9c365c944584

import re
input  = input()
xl = 'abcdefghijklmnopqrstuvwxyz'
# 正则提取所有的字母
reg = r'[a-zA-Z]+'
zm = ''.join(re.findall(reg, input))
sorted_zm = []
# 暴力排序
for one_zm in xl:
    for item in zm:
        if item.lower() == one_zm:
            sorted_zm.append(item)
# 输出字母时从上面拍好的序列中拿即可
for item in input:
    if item.isupper() or item.islower():
        print(sorted_zm.pop(0),end='')
    else:
        print(item,end='')

#字符串排序map#
全部评论

相关推荐

机械打工仔:我来告诉你原因,是因为sobb有在线简历,有些HR为了快会直接先看在线简历,初步感觉不合适就不会找你要详细的了
投了多少份简历才上岸
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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