Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Array Sorting in Ascending Order
00:00
5 left

Array Sorting in Ascending Order

EasyPython

Problem

A Nomura analytics component receives an array of integer order values that must be presented in ascending order. Implement a stable sorting algorithm without calling Python's built-in sort() or sorted() functions.

Return a new array containing the values in nondecreasing order. The input array must not be modified. Equal values may appear multiple times, and their relative order would need to be preserved if the values represented records with equal sort keys.

Formal Specification

Implement sort_values(nums), where nums is a list of integers. Return a new list containing exactly the same values arranged from smallest to largest.

Use an algorithm with O(n log n) worst-case time complexity. The expected solution should use divide and conquer and may use additional linear auxiliary space.

Constraints

  • 0 <= nums.length <= 10^5
  • -10^9 <= nums[i] <= 10^9
  • Do not call sort() or sorted().
  • The input list must remain unchanged.

Function Signature

def sort_values(nums):
Interviewer

Your question is Array Sorting in Ascending Order. 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.