Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top N Frequent Elements

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

Your question is Top N Frequent Elements. 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

KLA's eDR-7380 inspection workflow produces a list of integer event codes. Given the list and an integer n, return the n distinct event codes with the highest frequencies.

If two event codes have the same frequency, place the code that appears earlier in the input list first. The result must be ordered by decreasing frequency, then by first appearance.

Formal Specification

Implement top_n_frequent(nums, n), where nums is a non-empty list of integers and n is a positive integer no greater than the number of distinct values. Return a list containing exactly n distinct integers.

Aim for better than sorting all distinct values when n is much smaller than the number of distinct values.

Constraints

  • 1 <= len(nums) <= 100,000
  • 1 <= n <= number of distinct values in nums
  • -10^9 <= nums[i] <= 10^9
  • The output contains exactly n distinct values
  • Equal frequencies are ordered by first appearance

Function Signature

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