5
To wejście:Jak znaleźć związek na liście zestawów w Pythonie?
x = [{1, 2, 3}, {2, 3, 4}, {3, 4, 5}]
i wyjście powinno być:
{1, 2, 3, 4, 5}
Próbowałem użyć set().union(x)
ale to jest błąd Dostaję:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'set'