Ejemplo n.º 1
0
def test_work_1():
    expect(work([2.9, 2.1])).to_be(True)
Ejemplo n.º 2
0
def test_work_2():
    expect(work([5.6, 9.0, 2.0])).to_be(False)
Ejemplo n.º 3
0
def test_work_11():
    expect(work([3, 2, 1, 1, 2, 1, 4])).to_be(True)
Ejemplo n.º 4
0
def test_work_12():
    expect(work([2, 2, 1, 5, 4, 3])).to_be(True)
Ejemplo n.º 5
0
def test_work_8():
    expect(work([2, 3, 5, 6, 4, 1, 2, 2, 4])).to_be(False)
Ejemplo n.º 6
0
def test_work_9():
    expect(work([6, 5, 4, 3, 2, 1, 1])).to_be(True)
Ejemplo n.º 7
0
def test_work_7():
    expect(work([4, 2, 1, 3, 1])).to_be(False)
Ejemplo n.º 8
0
def test_work_6():
    expect(work([])).to_be(True)
Ejemplo n.º 9
0
def test_work_5():
    expect(work([5.6])).to_be(True)
Ejemplo n.º 10
0
def test_work_4():
    expect(work([2.0, 5.6, 9.0])).to_be(True)
Ejemplo n.º 11
0
def test_work_3():
    expect(work([9.0, 5.6, 2.0])).to_be(True)