diff --git a/2023/d12/ex1/ex1.py b/2023/d12/ex1/ex1.py index 4e84e37..e713128 100755 --- a/2023/d12/ex1/ex1.py +++ b/2023/d12/ex1/ex1.py @@ -1,6 +1,5 @@ #!/usr/bin/env python -import functools import sys @@ -11,7 +10,6 @@ def solve(input: list[str]) -> int: for record, groups in map(str.split, input) ] - @functools.cache def solve_line(record: str, groups: tuple[int, ...]) -> int: # Empty string must have no groups left, or it's not a solve if len(record) == 0: