Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Deduplicate Vulnerability Reports
00:00
5 left

Deduplicate Vulnerability Reports

EasyPython

Problem

Implement a function to deduplicate a list of incoming vulnerability reports efficiently.

Each report is a dictionary containing a unique fingerprint string and other fields. Treat reports with the same fingerprint as duplicates, retain the first occurrence, and preserve input order. Return a new list without modifying the input.

Function signature: def deduplicate_reports(reports):

Input is a list of dictionaries. Output is a list of dictionaries.

Constraints

  • 0 <= len(reports) <= 500
  • Each report is a dictionary containing a string key named fingerprint.
  • Fingerprints are hashable strings.
  • The input list must not be modified.
  • When duplicates exist, retain the first occurrence.

Function Signature

def deduplicate_reports(reports):
Interviewer

Your question is Deduplicate Vulnerability Reports. 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.