Simple&Natural
해시 - 위장 본문
728x90
import java.util.*;
class Solution {
public int solution(String[][] clothes) {
int answer = 1;
HashMap<String, Integer> hashMap = new HashMap<>();
for (String[] cloth : clothes) {
hashMap.put(cloth[1], hashMap.getOrDefault(cloth[1], 0) + 1);
}
for (Integer count : hashMap.values()) {
answer *= count+1;
}
answer -= 1;
return answer;
}
}
728x90
'코딩테스트 풀이 > 프로그래머스' 카테고리의 다른 글
정렬 - H-index (0) | 2022.05.01 |
---|---|
정렬 - 가장 큰 수 (0) | 2022.04.30 |
Hash - 전화번호 목록 (0) | 2022.04.24 |
Hash - 베스트 앨범 (0) | 2022.04.24 |
Hash - 완주하지 못한 선수 (0) | 2022.04.23 |