```
import java.io.;
import java.util.;
class Solution {
public int solution(String[][] clothes) {
int answer = 0;
int allCloth = clothes.length;
Map<String,Integer> map = new HashMap<>();
for(int i=0;i<clothes.length;i++) {
map.put(clothes[i][1],map.getOrDefault(clothes[i][1],1)+1);
}
int com = 1;
for(Integer i : map.values()) {
com*=i;
}
answer = com;
return answer-1;
}
```
'문제풀이' 카테고리의 다른 글
[프로그래머스] 가장 먼 노드 Java (0) | 2021.04.12 |
---|---|
[프로그래머스] 주식가격 Java (0) | 2021.04.12 |
[백준] 호석이 두마리치킨 JAVA (0) | 2021.04.08 |
프로그래머스 베스트앨범 Java + Collection Sort와 Comparator 정리 (0) | 2021.04.03 |
프로그래머스 완주하지 못한 선수 Java (0) | 2021.03.31 |