aoc
aoc copied to clipboard
Incorrect type annotation in y2023 d12 problem walkthrough
The type annotation for the solve
function declaration is incorrect. groups: tuple[int]
means len(groups) == 1
. Correct type annotaation is tuple[int, ...]
.