mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
8 lines
135 B
Python
8 lines
135 B
Python
from aoc.days.day11 import DayRunner
|
|
|
|
SAMPLE = "125 17"
|
|
|
|
|
|
def test_sample_part1() -> None:
|
|
assert DayRunner.part1(SAMPLE) == 55312
|