Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Most Frequent Element in List

EasyPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Most Frequent Element in List. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

JioCinema analytics receives a non-empty list of integer event codes from a user session. Write a function that returns the most frequent event code. If multiple codes have the same highest frequency, return the one that appears first in the list.

You should use an algorithm that runs in linear time. Do not modify the input list.

Formal Specification

Implement most_frequent_element(nums).

  • Input: nums, a non-empty list of integers.
  • Output: The integer occurring most frequently in nums. If frequencies tie, return the tied integer with the lowest first-occurrence index.

Constraints

  • 1 <= len(nums) <= 100000
  • -10^9 <= nums[i] <= 10^9
  • nums contains at least one element
  • The input list must remain unchanged

Function Signature

def most_frequent_element(nums):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output