Problem Description
A = [0, 1, 2, 3]
Input 2:
A = [1, 0, 0, 0]
[1, 2, 3, 0]
Output 2:
[1, 0, 0, 0]
The only empty packet is at index 1 so we move it last of the array.
Explanation 2:
The packets are already in required arrangement.
NOTE: You only need to implement the given function. Do not read input, instead use the arguments to the function. Do not print the output, instead return values as specified. Still have a question? Checkout Sample Codes for more details.