본문 바로가기
Algorithm/문제풀이

프로그래머스- 코테 고득점 kit - 해시: 위장

by devdevdev 2022. 3. 7.
import java.util.HashMap;

class Solution {
    public int solution(String[][] clothes) {
        int result = 1;
        HashMap<String, Integer> map = new HashMap();

        for(String[] item: clothes) {
            map.put(item[1], map.getOrDefault(item[1], 0) + 1) ;
        }

        for(String key: map.keySet()) {
            result *= map.get(key) + 1;
        }            

        return result-1;
    }
}
728x90

'Algorithm > 문제풀이' 카테고리의 다른 글

섹션 3. 탐색 & 시뮬레이션  (0) 2021.04.22
섹션 2. 코드 구현능력 기르기  (0) 2021.04.15

댓글