logo CodeStepByStep logo

UnionSets

Write a method named UnionSets that accepts as a parameter a HashSet of SortedSets of integers, and returns a SortedSet of integers representing the union of all of the sets of ints. (A union is the combination of everything in each set.) For example, calling your method on the following set of sets:

{{1, 3}, {2, 3, 4, 5}, {3, 5, 6, 7}, {42}}

Should cause the following set of integers to be returned:

{1, 2, 3, 4, 5, 6, 7, 42}
Method: Write a C# method as described, not a complete program or class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.