summaryrefslogtreecommitdiff
path: root/progs/a57.py
blob: 92aa2579250db87f0a935f9dd6dd6d4c7b0ac4b1 (plain)
1
2
3
4
5
6
7
8
9
def max_occurrences(list1):
    max_val = 0
    result = list1[0] 
    for i in list1:
        occu = list1.count(i)
        if occu > max_val:
            max_val = occu
            result = i 
    return result