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

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

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

#-*- coding:utf-8 -*-

string = raw_input()
table = {}
for str in string:
	table[str] = table.get(str, 0) + 1

my_dict = {key: value for key, value in table.items() if value != min(table.values())}

output_list = ''
str_list = list(my_dict.keys())
for s in list(string):
	if s in str_list:
		output_list += s

print(output_list)

#每日靠近华为offer一步#
全部评论

相关推荐

hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
dongsheng66:如果想进大厂的话,在校经历没必要占这么大篇幅,可以把专业技能单独放一个专栏写,可以加个项目经历
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务