Question: 
Write a python function to move all zeroes to the end of the given list.


Model's Code:
def move_zero(arr):
    return [x for x in arr if x != 0] + [0] * arr.count(0)



Sample Correct Code:
def move_zero(num_list):
    a = [0 for i in range(num_list.count(0))]
    x = [ i for i in num_list if i != 0]
    x.extend(a)
    return (x)


Asserts:
assert move_zero([1,0,2,0,3,4]) == [1,2,3,4,0,0]
assert move_zero([2,3,2,0,0,4,0,5,0]) == [2,3,2,4,5,0,0,0,0]
assert move_zero([0,1,0,1,1]) == [1,1,1,0,0]


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 632 of 974: 471/632 (74.5253164556962%): success