max python if the same value code example
Example 1: python max with custom function
nums = [1,2,3,1,1,3,3,4,4,3,5] #list
counts = collections.Counter(nums) # create a dict of counts
#using counts.get() fun as custom function
return max(counts.keys(), key=counts.get)
Example 2: max func in python
max([2, 1, 4, 3])
#Returns 4 as it's the largest integer in the list