示例#1
0
def test_part_1_solution_1():
    numbers = [0, 3, 6]

    assert part_1_solution(numbers) == 436
示例#2
0
def test_part_1_solution_7():
    numbers = [3, 1, 2]

    assert part_1_solution(numbers) == 1836
示例#3
0
def test_part_1_solution_6():
    numbers = [3, 2, 1]

    assert part_1_solution(numbers) == 438
示例#4
0
def test_part_1_solution_5():
    numbers = [2, 3, 1]

    assert part_1_solution(numbers) == 78
示例#5
0
def test_part_1_solution_4():
    numbers = [1, 2, 3]

    assert part_1_solution(numbers) == 27
示例#6
0
def test_part_1_solution_3():
    numbers = [2, 1, 3]

    assert part_1_solution(numbers) == 10
示例#7
0
def test_part_1_solution_2():
    numbers = [1, 3, 2]

    assert part_1_solution(numbers) == 1