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

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

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

s = input()
w = ''
count = 999

for i in s:
    str_count = s.count(i)
    if str_count < count:
        count = str_count
        l = []
        l.append(i)
    elif str_count == count:
        l.append(i)

for i in s:
    for j in set(l):
        if i == j:
            break
    else:
        w+=i

if __name__ == "__main__":
    print(w)

全部评论

相关推荐

喜欢吃蛋糕仰泳鲈鱼是我的神:字节可以找个hr 给你挂了,再放池子捞
点赞 评论 收藏
分享
躺尸修仙中:因为很多92的也去卷中小厂,反正投递简历不要钱,面试不要钱,时间冲突就推,不冲突就面试积累经验
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务