Exemplo n.º 1
0
def test_repeated_reduced():
    s = 'aBbBbAa'
    assert day5.reduce(s) == 'a'
Exemplo n.º 2
0
def test_example():
    s = 'dabAcCaCBAcCcaDA'
    assert day5.reduce(s) == 'dabCBAcaDA'
Exemplo n.º 3
0
def test_reduce_possible():
    s = 'aBb'
    assert day5.reduce(s) == 'a'
Exemplo n.º 4
0
def test2():
    input = 'abBA'
    remainder = day5.reduce(input)
    assert len(remainder) == 0
Exemplo n.º 5
0
def test5():
    input = 'dabAcCaCBAcCcaDA'
    remainder = day5.reduce(input)
    assert len(remainder) == 10
Exemplo n.º 6
0
def test4():
    input = 'aabAAb'
    remainder = day5.reduce(input)
    assert len(remainder) == 6
Exemplo n.º 7
0
def test3():
    input = 'abAB'
    remainder = day5.reduce(input)
    assert len(remainder) == 4