猿辅导-去除数组中数量大于k的数

题目:给定一个数组和一个k,将数组中某数的个数大于k的删除,其他数不变

dic = {}
res = []
for num in nums:
    if num not in dic:
        dic[num] = 1
    else:
        dic[num] +=1

for num in nums:
    if dic[num]<=m:
        res.append(num)
res = [str(i) for i in res]
print(' '.join(res))

  注:

这个是编程题第一个,属于简单题。首先用字典统计每个数的个数,然后遍历原数组,将个数小于k的保存在预先的列表里。

posted @ 2019-08-25 15:19  尘世中一个迷途小书童  阅读(226)  评论(0编辑  收藏  举报