fix: add missing colons to solution template

This commit is contained in:
2025-12-09 23:23:43 +01:00
parent 000002007f
commit 00000210a8

View File

@@ -113,11 +113,11 @@ def part_2(input_data: str) -> Any:
return None
def test_part_1(example_data)
def test_part_1(example_data):
assert part_1(example_data) == 0
def test_part_2(example_data)
def test_part_2(example_data):
assert part_2(example_data) == 0
"""