Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Sorting Algorithm and Complexity
00:00
5 left

Sorting Algorithm and Complexity

EasyPython

Problem

At Impossible Foods, product event streams often need deterministic ordering before downstream processing. Implement a sorting algorithm of your choice in Python, and return the sorted array.

Choose a standard comparison-based sort such as merge sort, quicksort, or heap sort. Your solution must sort the input in ascending order and handle duplicate values and negative numbers.

Formal Specification

Write a function that takes one parameter:

  • nums: a list of integers

Return:

  • A new list containing the same integers in ascending order

Constraints

  • 0 <= len(nums) <= 10^5
  • -10^9 <= nums[i] <= 10^9
  • The output must be a new sorted list
  • Do not use built-in sorting helpers such as sort() or sorted()

Function Signature

def sort_numbers(nums):
Interviewer

Your question is Sorting Algorithm and Complexity. 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.