blob: 6fd0e2b4d1f15e29ddf9ff9632dd12a8178d7102 (
plain)
1
2
3
4
5
6
7
|
# -*- coding: utf-8 -*-
from day8 import AssignmentTwo
def test_calculate_1d_scenic_score():
assert 1 * 2 == AssignmentTwo.calculate_1d_scenic_score([3, 5, 3, 5, 3], 1)
assert 1 * 2 == AssignmentTwo.calculate_1d_scenic_score([2, 5, 5, 1, 2], 2)
|