Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Finding Duplicates in an Array
00:00
5 left

Finding Duplicates in an Array

MediumPython

Problem

Provide a solution for finding duplicates in an array of integers.

Given a list of integers, return each value that appears more than once, including each duplicate only once. Preserve the order in which values are first detected as duplicates. Return an empty list when no value is repeated.

Constraints

  • 0 <= nums.length <= 1000
  • -10^9 <= nums[i] <= 10^9
  • Return each duplicated integer at most once

Function Signature

def find_duplicates(nums):
Interviewer

Your question is Finding Duplicates in an Array. 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.