Swift - Collections
What will be printed by this Swift code?
let setX: Set = [10, 20, 30, 40]
let setY: Set = [30, 40, 50, 60]
let intersectionSet = setX.intersection(setY)
print(intersectionSet.sorted())
