Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
import Foundation var st: Set<String> = ["swift", "python", "java", "c"] let toRemove: Set<String> = ["swift", "java"] st.subtract(toRemove) print(st) /* run: ["c", "python"] */