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

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

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

import sys

s = input()
least_len = len(s)
res = ''
for c in s:
    if s.count(c) <= least_len:
        least_len = s.count(c)
for c in s:
    if s.count(c) != least_len:
        res += c
print(res)

全部评论

相关推荐

09-30 14:33
Python
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

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