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