advent-of-code/tests/2024/day1/test_part2.py
2024-12-02 16:23:28 +01:00

14 lines
334 B
Python

from pathlib import Path
from day1 import part2
def test_compute_similarity_score():
dict1 = {1: 1, 2: 1, 3: 3, 4: 1}
dict2 = {3: 3, 4: 1, 5: 1, 9: 1}
assert part2.compute_similarity_score(dict1, dict2) == 31
def test_main():
test_file = Path(__file__).parent / "test-data"
assert part2.main(test_file) == 31