Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Filter Array Elements and Sort

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

Your question is Filter Array Elements and Sort. 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

A Paysafe Checkout validation flow receives integer values that may include entries below an accepted minimum. Given an integer array nums and an integer minimum, return a new array containing only values greater than or equal to minimum, sorted in non-decreasing order.

Do not modify the input array. Preserve duplicate values in the result. If no values meet the minimum, return an empty array.

Formal Specification

  • Input: nums, an array of integers, and minimum, an integer threshold.
  • Output: A new array of integers containing every value x from nums where x >= minimum, sorted in ascending order.

Constraints

  • 0 <= nums.length <= 10^5
  • -10^9 <= nums[i] <= 10^9
  • -10^9 <= minimum <= 10^9
  • The input array must remain unchanged

Function Signature

def filter_and_sort(nums, minimum):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output