Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Reverse Array In Place
00:00
5 left

Reverse Array In Place

EasyPython

Problem

At Spotify, you need to reverse a list of values without allocating another array. Given an array arr, modify it in place so its elements appear in reverse order.

Formal Specification

  • Input: A list of integers arr
  • Output: The same list after being reversed in place
  • Requirement: Do not create a second array for the result

Constraints

  • 0 <= len(arr) <= 10^5
  • -10^9 <= arr[i] <= 10^9
  • The array must be reversed in place
  • Do not allocate a second array for the final result

Function Signature

def reverse_array(arr):
Interviewer

Your question is Reverse Array In Place. 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.