Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Sorting Integers Function
00:00
5 left

Sorting Integers Function

EasyPython

Problem

Write a function that sorts an array of integers in ascending order. You may use any comparison-based sorting approach, but the function must return the sorted array.

Formal Specification

  • Input: A list of integers nums
  • Output: The same list of integers arranged in nondecreasing order
  • Function behavior: You may sort the array in place or return a new sorted list, but the returned value must be the sorted array

Constraints

  • 0 <= len(nums) <= 10^5
  • -10^9 <= nums[i] <= 10^9
  • The array may contain duplicate values
  • The function must handle an empty array

Function Signature

def sort_array(nums):
Interviewer

Your question is Sorting Integers Function. 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.