Ejemplo n.º 1
0
def test_example9():
    string1 = "pbaa"
    string2 = "paab"
    assert oos.one_off_string(string1, string2) == False
Ejemplo n.º 2
0
def test_example8():
    string1 = "palep"
    string2 = "sales"
    assert oos.one_off_string(string1, string2) == False
Ejemplo n.º 3
0
def test_example1():
    string1 = "pale"
    string2 = "ple"
    assert oos.one_off_string(string1, string2) == True
Ejemplo n.º 4
0
def test_example6():
    string1 = "palep"
    string2 = "palepp"
    assert oos.one_off_string(string1, string2) == True
Ejemplo n.º 5
0
def test_example5():
    string1 = "palep"
    string2 = "pleap"
    assert oos.one_off_string(string1, string2) == False
Ejemplo n.º 6
0
def test_example4():
    string1 = "pale"
    string2 = "bake"
    assert oos.one_off_string(string1, string2) == False