首页 > TAG信息列表 > 1647

LeetCode 1647. 字符频次唯一的最小删除次数**

具体思想: 主体思想是如何去除重复元素; 采用贪心思想: 1.可以使用去重set记录已经出现的频次,如果重复,就减到为零或者不再重复,讲新次数入set; 2.可以逆序排序。 从频次最高的开始遍历,如果当前频次和前一个频次相同,则-1,使其不同; 如果当前频次大于前一个平次,则说明当前频次和之前的

【leetcode】1647. Minimum Deletions to Make Character Frequencies Unique

题目如下: A string s is called good if there are no two different characters in s that have the same frequency. Given a string s, return the minimum number of characters you need to delete to make s good. The frequency of a character in a strin