Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Refactor a Data Processing Script
00:00
5 left

Refactor a Data Processing Script

EasyPython

Problem

There was a question with some python code that processed data and I was asked to refactor it.

Refactor the data-processing logic without changing its intended behavior: combine records with the same id by summing their amount values, and return results in the order each ID first appears. Implement def refactor_records(records):.

Input is a list of dictionaries containing a string id and integer amount. Return a list of dictionaries containing id and total.

Constraints

  • 0 <= len(records) <= 1000
  • Each record contains a non-empty string id
  • Each amount is an integer
  • The output preserves the first-seen order of distinct IDs

Function Signature

def refactor_records(records):
Interviewer

Your question is Refactor a Data Processing Script. 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.