-
[Programmers] 위장STUDYING/Algorithm 2021. 9. 27. 00:41728x90
func solution(_ clothes:[[String]]) -> Int { var dic: [String: Int] = [:] clothes.forEach { (cloth) in if dic.keys.contains(cloth[1]) { dic[cloth[1]]! += 1 } else { dic[cloth[1]] = 1 } } var result = 1 for val in dic { result *= (val.value + 1) } return result - 1 }
'STUDYING > Algorithm' 카테고리의 다른 글
[Programmers] 수박수박수박수박수박수? (0) 2021.09.27 [Programmers] 호텔 방 배정 (0) 2021.09.27 [Programmers] 두 개 뽑아서 더하기 (0) 2021.09.27 [Programmers] 가장 큰 수 (0) 2021.09.27 [Programmers] 프린터 (0) 2021.09.27