数组和集合 / 无重复集合

let intSet: Set<Int> = [123]
let strSet: Set = ["one""two""three"]

print("intSet is \(intSet)"
print("strSet is \(strSet)")