Flatten multiple sets into one unique collection and return a sorted list.
Constraints
Example
>>> union_of_sets({1, 2}, {2, 3})
[1, 2, 3]
>>> union_of_sets({1}, {2}, {3})
[1, 2, 3]
>>> union_of_sets()
[]
>>> union_of_sets({'a', 'b'}, {'b', 'c'})
['a', 'b', 'c']
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints