Swift - Collections
Find the mistake in this Swift code:
let a: Set = [1, 2, 3] let b: Set = [3, 4, 5] let c = a.subtract(b) print(c)
let a: Set = [1, 2, 3] let b: Set = [3, 4, 5] let c = a.subtract(b) print(c)
subtracting(), not subtract().15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions