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

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

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

while True:
    try:
        str_ = input()
        dict_ = {}
        res = ''
        for s in str_:
            if s not in dict_.keys():
                dict_[s] = 1
            else:
                dict_[s] += 1
        min_ = min(dict_.values())
        for s in str_:
            if dict_[s] != min_:
                res += s
        print(res)
    except:
        break
            
全部评论

相关推荐

牛客771574427号:恭喜你,华杰
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务