Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Most Frequent Element in List
00:00
5 left

Most Frequent Element in List

EasyPython

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):
Interviewer

Your question is Most Frequent Element in List. Start with the requirements in the Question tab.

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.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.