Swift - Collections
You have two Sets:
Write Swift code to find elements in set1 that are not in set2 and sort them.
let set1: Set = [1, 2, 3, 4, 5]
let set2: Set = [4, 5, 6, 7, 8]
Write Swift code to find elements in set1 that are not in set2 and sort them.
