题解 | #字符串归一化#
字符串归一化
http://www.nowcoder.com/practice/6d5e036defdf408681376a4a9d4930ff
def string_sort(n): # 对n进行去重set(),排序sorted() a = [_ for _ in sorted(list(set(n)))] # 遍历a统计元素在n出现的次数 b = [n.count(_) for _ in a ] # 拼接成一个新的列表 c = [i+str(j) for i,j in zip(a,b)] print(''.join(c)) n = input().strip() string_sort(n)