aoc icon indicating copy to clipboard operation
aoc copied to clipboard

Incorrect type annotation in y2023 d12 problem walkthrough

Open ismagilli opened this issue 1 year ago • 0 comments

The type annotation for the solve function declaration is incorrect. groups: tuple[int] means len(groups) == 1. Correct type annotaation is tuple[int, ...].

ismagilli avatar Dec 31 '23 01:12 ismagilli