Write a function called
friends_teams
that takes a list of friends, ateam_size
(typeint
, default=2) andorder_does_matter
(typebool
, defaultFalse
).Return all possible teams. Hint: if order matters (
order_does_matter=True
), the number of teams would be greater.See the tests for more details. Enjoy :)