예제 #1
0
def test_example_2():
    s = "a##c"
    t = "#a#c"
    assert backspace_compare(s, t) is True
예제 #2
0
def test_example_3():
    a = "a#c"
    t = "b"
    assert backspace_compare(a, t) is False
예제 #3
0
def test_example_1():
    s = "ab#c"
    t = "ad#c"
    assert backspace_compare(s, t) is True
예제 #4
0
파일: test2.py 프로젝트: kateapl/python_hw
def test_two_backspace():
    assert hw2.backspace_compare("a##c", "#a#c")
예제 #5
0
파일: test2.py 프로젝트: kateapl/python_hw
def test_one_backspace():
    assert hw2.backspace_compare("ab#c", "ad#c")
예제 #6
0
파일: test2.py 프로젝트: kateapl/python_hw
def test_equal():
    assert hw2.backspace_compare("dancing queen", "dancing queens#")
예제 #7
0
파일: test2.py 프로젝트: kateapl/python_hw
def test_empty():
    assert hw2.backspace_compare("", "")
예제 #8
0
파일: test2.py 프로젝트: kateapl/python_hw
def test_false():
    assert not hw2.backspace_compare("a#c", "b")