How to remove elements of a list that are repeated less than k times in Python

2 Answers

0 votes
from collections import Counter

def filter_by_frequency(lst, k):
    counts = Counter(lst)
    return [x for x in lst if counts[x] >= k]


lst = [1, 2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 5, 6, 7, 7, 7, 7, 8, 8, 8]
k = 3

print(filter_by_frequency(lst, k))


   
'''
run:
 
[3, 3, 3, 4, 4, 4, 4, 7, 7, 7, 7, 8, 8, 8]
   
'''

 



answered Feb 11 by avibootz
0 votes
from collections import Counter

def remove_in_place(lst, k):
    counts = Counter(lst)
    lst[:] = [x for x in lst if counts[x] >= k]



lst = [1, 2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 5, 6, 7, 7, 7, 7, 8, 8, 8]
k = 3

remove_in_place(lst, k)

print(lst)


   
'''
run:
 
[3, 3, 3, 4, 4, 4, 4, 7, 7, 7, 7, 8, 8, 8]
   
'''

 



answered Feb 11 by avibootz
...