You are given an array numbers that contains only 0 and 1 values.
Your task is to sort the array numbers in-place such that all 0s appear before all 1s.
Do not return anything, instead modify the numbers input.
[1, 0, 1, 0, 0]
[0, 0, 0, 1, 1]
The array contains elements 1, 0, 1, 0, 0. After sorting, all 0s come first, then 1s.
[1, 1, 0, 0]
[0, 0, 1, 1]
The array contains elements 1, 1, 0, 0. After sorting, the 0s come first, then 1s.
[0, 0, 1, 1]
[0, 0, 1, 1]
The array is already sorted, so its order remains unchanged.
[1, 0, 1, 0, 0]
[0, 0, 0, 1, 1]