딕셔너리 Dictionary

영 yyyng·2022년 7월 9일
0

Swift

목록 보기
2/9
post-thumbnail
var someDictionary: [keyType:valueType] =  [key:value]
print(someDictionary[key]) // 결과 옵셔널로 (value) 출력

랜덤 키 가져오기

someDictionary.keys.randomElement()

//중복 제외
var resultRandom: [String] = []
while resultRandom.count < 99 {
	let appendValue = someDictionary.keys.randomElement()!
    if !result.contains(appendValue) {
    	result.append(appendValue)
    }
}
profile
yyyng2.github.io

0개의 댓글