-
Level2) 위장PS/programmers 2021. 5. 3. 17:5412345678910111213141516171819202122232425import java.util.*;public class Level2_위장 {public static int solution(String[][] clothes) {Map<String, Integer> map = new HashMap<>();for (String[] str: clothes) {String key = str[1];map.put(key, map.getOrDefault(key, 0) + 1);}int answer = 1;for (int value : map.values()) {answer *= (value + 1);}return answer - 1;}public static void main(String[] args) {String[][] clotehs = {{"yellow_hat", "headgear"}, {"blue_sunglasses", "eyewear"}, {"green_turban", "headgear"}};System.out.println(solution(clotehs));}}
cs 'PS > programmers' 카테고리의 다른 글
Level2) 카펫 (0) 2021.07.13 Level2) H-Index (0) 2021.05.04 Level1) 내적 (0) 2021.05.02 Level1) 폰켓몬 (0) 2021.05.01 Level1) 소수구하기 (0) 2021.04.30