1ff6011abc
instead of creating temporary lists and sorting those in-place
6 lines
169 B
Python
6 lines
169 B
Python
print(sorted({1,2}.symmetric_difference({2,3})))
|
|
print(sorted({1,2}.symmetric_difference([2,3])))
|
|
s = {1,2}
|
|
print(s.symmetric_difference_update({2,3}))
|
|
print(sorted(s))
|