Question: Create a function in PYTHON move_zeros whose parameter is a list of integers and moves all the zeros to the end of the list. Forr
Create a function in PYTHON move_zeros whose parameter is a list of integers and moves all the zeros to the end of the list.
Forr instance, if the list is [1, 0, 3, 0, 0, 5, 7] the result deshould be [1, 3, 5, 7, 0, 0, 0]
Prepare THREE solutions
move_zeros_v1 use another list tmp to calculate the new list and return it as a result (easy one) . The initial list is not modified.
move_zeros_v2 modifies the initial list inside the function and does not return anything.
move_zeros_v3 moves the elements in the initial list without using any temporary list (harder one) . The function does not return anything. We can use a temporary variable to switch 2 elements, but we can not use the Python echange a,b=b,a
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
