Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Reverse Array In Place

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

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

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):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output