Contact: aviboots(AT)netvision.net.il
39,868 questions
51,791 answers
573 users
lst = [1, 3, 1, 1, 4, 4, 5, 5, 4, 2, 2, 2, 3, 3, 3] print(min(lst, key = lst.count)) ''' run: 5 '''
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 '''
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 '''