Swift - Collections
Given two sets of integers:
let set1: SetWrite Swift code to find elements that are in either set but NOT in both (symmetric difference). What is the correct way to do this?= [2, 4, 6, 8, 10] let set2: Set = [1, 2, 3, 4, 5]
