Swift - Collections
What is the output of the following Swift code?
let setA: Set = [1, 2, 3, 4] let setB: Set = [3, 4, 5, 6] let result = setA.union(setB) print(result.sorted())
