Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySwiftarrays dictionaries setsSingle-choice MCQ

What is the value of `result`?

let a: Set = [1, 2, 3] let b: Set = [3, 4, 5] let result = a.intersection(b) print(result)