알고리즘/Java
프로그래머스 코딩테스트 Level 2. 의상 with Java
yhyuk
2024. 9. 23. 12:21
728x90
반응형
문제
https://school.programmers.co.kr/learn/courses/30/lessons/42578?language=java
풀이
import java.util.*;
class Solution {
public int solution(String[][] clothes) {
Map<String, Integer> map = new HashMap<>();
int answer = 1;
for (int i=0; i<clothes.length; i++) {
map.put(clothes[i][1], map.getOrDefault(clothes[i][1], 0) + 1);
}
for (String key : map.keySet()) {
answer *= (map.get(key) + 1);
}
answer -= 1;
return answer;
}
}
1. 규칙 파악
- 얼굴: 동그란 안경, 검정 선글라스, X
- 상의: 파랑티, X
- 하의: 청바지, X
- 아우터: 긴 코트, X
728x90
반응형