Interview Guides
Given a function sort_numbers(nums) that takes a list of integers and returns the list sorted in non-decreasing order, write a Python test helper that verifies whether the function behaves correctly. The helper should return True only if all required test cases pass, and False otherwise.
0 <= len(nums) <= 10^4 for any individual test case