Exemplo n.º 1
0
def test_2():
    assert center_zeros([1, 1, 3, 0]) == [1, 1, 0, 3]
Exemplo n.º 2
0
def test_1():
    assert center_zeros([0, 3, 1]) == [3, 0, 1]
Exemplo n.º 3
0
def test_4():
    assert center_zeros([0, 0, 1]) == [0, 0, 1]
Exemplo n.º 4
0
def test_5():
    assert center_zeros([]) == []
Exemplo n.º 5
0
def test_3():
    assert center_zeros([1, 1, 3, 0, 6, 0]) == [1, 1, 0, 0, 3, 6]