This commit is contained in:
2025-11-17 00:18:45 -03:00
commit 503f4c0fa6
18 changed files with 633 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
from typing import Any
def part_1(input_data: str) -> Any:
# your part 1 solution here
return None
def part_2(input_data: str) -> Any:
# your part 2 solution here
return None
# alternatively your can implement a "two in one solution" like this
# def part_1_2(input_data) -> Any:
# return None