https://school.programmers.co.kr/learn/courses/30/lessons/42578
나의풀이
import java.util.*;
class Solution {
public int solution(String[][] clothes) {
int answer = 1;
Map<String, Integer> m = new HashMap<>();
for(int i=0; i<clothes.length; i++){
int cnt=m.getOrDefault(clothes[i][1],0);
m.put(clothes[i][1], cnt+1);
}
for(String s:m.keySet()){
answer*=(m.get(s)+1);
}
return answer-1;
}
}
'코테풀이' 카테고리의 다른 글
[프로그래머스] 모음사전 java 자바 (LEVEL2) (0) | 2023.04.30 |
---|---|
[프로그래머스] 전화번호 목록 java 자바 (LEVEL2) (0) | 2023.04.30 |
[프로그래머스] 달리기 경주 java 풀이(level1) (0) | 2023.04.20 |
[프로그래머스] 바탕화면 정리 java 풀이(level1) (0) | 2023.04.20 |
[프로그래머스] 공원 산책 java 풀이 (level1) (0) | 2023.04.20 |