Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,868 questions

51,791 answers

573 users

How to find the element with minimum occurrences in a list with Python

3 Answers

0 votes
lst = [1, 3, 1, 1, 4, 4, 5, 5, 4, 2, 2, 2, 3, 3, 3]

print(min(lst, key = lst.count))
 
    
    
    
'''
run:
    
5
  
'''

 



answered Feb 20, 2023 by avibootz
0 votes
from collections import Counter

lst = [1, 3, 1, 1, 4, 4, 5, 5, 4, 2, 2, 2, 3, 3, 3]

print(Counter(lst).most_common()[-1][0])
 
    
    
    
'''
run:
    
5
  
'''

 



answered Feb 20, 2023 by avibootz
0 votes
import numpy as np

lst = [1, 3, 1, 1, 4, 4, 5, 5, 4, 2, 2, 2, 3, 3, 3]

# (array([1, 2, 3, 4, 5]), array([3, 3, 4, 3, 2]))

print(np.unique(lst, return_counts=True)[0][-1])
 
    
    
    
'''
run:
    
5
  
'''

 



answered Feb 20, 2023 by avibootz
...