56

This is the input:

x = [{1, 2, 3}, {2, 3, 4}, {3, 4, 5}]

and the output should be:

{1, 2, 3, 4, 5}

I tried to use set().union(x) but this is the error I'm getting:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'set'
vaultah
  • 44,105
  • 12
  • 114
  • 143
Ravit
  • 1,482
  • 3
  • 18
  • 24

1 Answers1

84

The signature of set.union is union(other, ...). Unpack sets from your list:

In [6]: set.union(*x)
Out[6]: {1, 2, 3, 4, 5}
vaultah
  • 44,105
  • 12
  • 114
  • 143