Files
adventofcode/2024/tests/test_day11.py
2024-12-11 08:51:32 +01:00

8 lines
135 B
Python

from aoc.days.day11 import DayRunner
SAMPLE = "125 17"
def test_sample_part1() -> None:
assert DayRunner.part1(SAMPLE) == 55312