This is the input:
x = [{1, 2, 3}, {2, 3, 4}, {3, 4, 5}]
and the conclusion should be:
{1, 2, 3, 4, 5}
I tried using set().union(x) , but this is the error I get:
Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: unhashable type: 'set'
source share