Skip to content
Advertisement

Is there a O(n) way to find the most repeated item in list without using counter

I need a solution that is O(n) for finding most repeated element in a list. If 2 or more numbers are repeated the same amount of time return smallest number.

JavaScript

Output should be 4 which should give the count of 3

Advertisement

Answer

You could use max and groupby:

JavaScript

Or use a dict as a counter:

JavaScript

Or if your data has runs of similar numbers, without the O(n log n) sort step you can combine these two methods:

JavaScript

And it likely is the case that using max on a comprehension is faster than using a lambda:

JavaScript

In all cases, you are construction a tuple of (-element_in_list, count_of_that_element):

JavaScript

You then take that max of that by reversing the tuple either with a comprehension of a key function. Your answer then is -element_in_list since it was negated to take the max.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement