题解 | #字符统计#

字符统计

http://www.nowcoder.com/practice/c1f9561de1e240099bdb904765da9ad0

python3

while True:
    try:
        strs = input()
        new_str = set(strs)
        res = {}
        for i in new_str:
            count_i = strs.count(i)
            if count_i not in res:
                res[count_i] = [i]
            else:
                res[count_i].append(i)
                res[count_i] = sorted(res[count_i],key=lambda x:ord(x))
        result = sorted(res.items(),key=lambda k :k[0],reverse=True)
        print(''.join(''.join(i[1]) for i in result))
    except:
        break
全部评论

相关推荐

10-24 13:36
门头沟学院 Java
Zzzzoooo:更新:今天下午有hr联系我去不去客户端,拒了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务