Swift - Collections
You want to find elements that are in
setA but not in setB, and then add elements from setC that are also in setB. Which Swift code correctly does this?let setA: Set = [1, 2, 3, 4] let setB: Set = [3, 4, 5, 6] let setC: Set = [4, 5, 6, 7]
