Swift - Collections
Given two sets:
Which Swift code correctly creates a new set containing elements in either
let setX: Set<Int> = [1, 2, 3, 4, 5]
let setY: Set<Int> = [4, 5, 6, 7]
Which Swift code correctly creates a new set containing elements in either
setX or setY but not in both?