コード例 #1
0
def test_totalLength_5():
    assert totalLength(['x', 'xxx', 'xxxx']) == 8
コード例 #2
0
def test_totalLength_4():
    assert totalLength(['Go', 'Gauchos']) == 9
コード例 #3
0
def test_totalLength_2():
    assert totalLength(['a', 'b']) == 2
コード例 #4
0
def test_totalLength_3():
    assert totalLength([]) == 0
コード例 #5
0
def test_totalLength_1():
    assert totalLength('1') == False