Dictionary.init(uniqueKeysWithValues:) 키-값 쌍의 시퀀스로부터 새로운 딕셔너리를 생성하는 Dictionary의 이니셜라이저이다. 입력으로 (Key, Value) 튜플의 시퀀스를 받고, 중복된 키가 있으면 런타임 에러가 발생한다. 만약, 키가 중복된다면 Dictionary.init(_:uniqueKeysWith:) 함수를 이용하면 된다고 한다. 예제다음 코드는 문자열 배열을 키, 정수를 값으로 하는 새 Dictionary를 생성하는 예제이다.let digitWords = ["one", "two", "three", "four", "five"]let wordToValue = Dictionary(uniqueKeysWithValues: zip(digitWords, 1...5))p..