Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Python Duplicate Removal

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

Your question is Python Duplicate Removal. 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

Write a Python program to remove duplicates from a list.

Implement remove_duplicates(items) so it returns a new list containing each value only once, preserving the order of its first occurrence. The input list contains hashable values, and the original list must not be modified.

Function Contract

  • Input: a list of hashable values
  • Output: a new list with duplicates removed

Examples:

  • [3, 1, 3, 2, 1] returns [3, 1, 2].
  • [] returns [].

Constraints: 0 <= len(items) <= 10^4.

Constraints

  • 0 <= len(items) <= 10^4
  • Every item is hashable
  • The original list must not be modified
  • The first occurrence of each value must be preserved

Function Signature

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