Contact: aviboots(AT)netvision.net.il
41,243 questions
53,750 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"] */