Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Find First Repeating Element
00:00
5 left

Find First Repeating Element

MediumPython

Problem

Write a C program to find the first repeating element in an array of N elements where values are in the range 0 to N-1.

Implement the equivalent function in Python. Given nums, return the first value encountered whose occurrence repeats during a left-to-right scan, or -1 if every value is unique. The input is a list of integers, and the output is an integer.

Constraints

  • 1 <= nums.length <= 1000
  • 0 <= nums[i] < nums.length
  • Return the value, not its index
  • Return -1 when no value repeats

Function Signature

def first_repeating_element(nums):
Interviewer

Your question is Find First Repeating Element. 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.