https://developer.apple.com/documentation/swift/set/ Set | Apple Developer Documentation An unordered collection of unique elements. developer.apple.com Set이란? Set이란 자료구조 중 하나로 배열, 딕셔너리와 같이 Value Type의 구조체이다. Set의 특징은 다음과 같다. 순서가 없는 구조체 let set:Set = [1,2,3,4,5] print(set) // [1, 3, 2, 4, 5] print(set) // [2, 4, 1, 3, 5] Hashable 프로토콜을 준수하는 타입만 사용이 가능하다. 배열에 비해 검색속도가 빠르다. 해시 값을 통해 저장한다. 중복 요소를 포..