import java.util.*;
class Solution {
public int solution(String[][] clothes) {
int answer = 1;
HashMap<String, Integer> hashmap = new HashMap<>();
for(String[] c: clothes){
String category = c[1];
hashmap.put(category, hashmap.getOrDefault(category,0)+1);
}
for(int x: hashmap.values()){
answer *= (x+1);
}
//아무것도 입지 않는 경우 제외
return answer-1;
}
}
'공부기록 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 이진 변환 반복하기 (0) | 2023.12.25 |
---|---|
[프로그래머스] 모의고사 (1) | 2023.12.23 |
[프로그래머스] 멀리 뛰기 (1) | 2023.12.01 |
[프로그래머스] 전화번호 목록 (0) | 2023.11.22 |
[프로그래머스] 구명보트 (0) | 2023.11.09 |