Set의union

작성일

Set의union

// 배열
let myFriends = ["철수", "영희", "수잔", "제시카"]
let yourFriends = ["철수", "수잔", "제니퍼", "존시나"]

// 배열을 set으로 만들기
let myFriendsSet = Set(myFriends)
let yourFriendsSet = Set(yourFriends)

// 유니온으로 중복은 제거하고 합치기
let totalFriends = myFriendsSet.union(yourFriendsSet)

print(totalFriends)

출력

["영희", "제시카", "수잔", "존시나", "제니퍼", "철수"]