You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The type annotation for the solve function declaration is incorrect. groups: tuple[int] means len(groups) == 1. Correct type annotaation is tuple[int, ...].
The text was updated successfully, but these errors were encountered:
The type annotation for the
solve
function declaration is incorrect.groups: tuple[int]
meanslen(groups) == 1
. Correct type annotaation istuple[int, ...]
.The text was updated successfully, but these errors were encountered: