题解 | #删除字符串中出现次数最少的字符#

删除字符串中出现次数最少的字符

https://www.nowcoder.com/practice/05182d328eb848dda7fdd5e029a56da9

import sys
from collections import Counter

def deleteChars(s: str) -> str:
    c = Counter(s)
    minCnt = c.most_common()[-1][1]
    return "".join([i for i in s if c[i] > minCnt])

for line in sys.stdin:
    a = line.split()
    print(deleteChars(a[0]))

全部评论

相关推荐

点赞 评论 收藏
转发
点赞 收藏 评论
分享
牛客网
牛客企业服务