예제 #1
0
def test_7():
    assert allStar("1234") == "1*2*3*4"
예제 #2
0
def test_5():
    assert allStar("3.14") == "3*.*1*4"
예제 #3
0
def test_6():
    assert allStar("Chocolate") == "C*h*o*c*o*l*a*t*e"
예제 #4
0
def test_4():
    assert allStar("") == ""
예제 #5
0
def test_3():
    assert allStar("a") == "a"
예제 #6
0
def test_2():
    assert allStar("ab") == "a*b"
예제 #7
0
def test_1():
    assert allStar("abc") == "a*b*c"
예제 #8
0
def test_0():
    assert allStar("hello") == "h*e*l*l*o"