Beispiel #1
0
def test_openLocks_2():
    assert openLocks(100, 100) == 10
Beispiel #2
0
def test_openLocks_8():
    assert openLocks(1, 0) == 0
Beispiel #3
0
def test_openLocks_1():
    assert openLocks(10, 10) == 3
Beispiel #4
0
def test_openLocks_7():
    assert openLocks(0, 3) == 0
Beispiel #5
0
def test_openLocks_6():
    assert openLocks(0, 0) == 0
Beispiel #6
0
def test_openLocks_5():
    assert openLocks(10000, 1000) == 5228
Beispiel #7
0
def test_openLocks_4():
    assert openLocks(70, 100) == 8
Beispiel #8
0
def test_openLocks_3():
    assert openLocks(100, 72) == 34