[Swift] Set
Swift provides three primary collection types, known as arrays, sets, and dictionaries, for storing collections of values. Arrays are ordered collections of values. Sets are unordered collections of unique values. Dictionaries are unordered collections of key-value associations. 시작하기에 앞서 다음은 Apple Document 에서 명시되어 있는 설명이다.요약하면.. Array,: 정렬된 값들의 집합Set : 정렬되지 않은 값들의 집합Dictionary : 정렬되지 않은 key-valu..
2016.02.10