Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Coding: Max Entries by ID
00:00
5 left

Coding: Max Entries by ID

MediumPython

Problem

Solve a problem where you are given an array of [ID, entry] and you need to find the ID with the maximum number of entries.

Implement find_id_max_entries(records). Each record is a two-element list containing an ID and an entry. Return the ID that occurs in the greatest number of records. If multiple IDs tie, return the ID whose first occurrence appears earliest in the input. IDs are hashable, and each input contains at least one record.

Constraints

  • 1 <= records.length <= 5000
  • Each record contains exactly two values: [ID, entry]
  • IDs are hashable and may be strings or integers
  • Each input contains at least one record

Function Signature

def find_id_max_entries(records):
Interviewer

Your question is Coding: Max Entries by ID. 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.