반응형 성장하기/코딩테스트1 [프로그래머스] 코딩테스트 연습 > 해시 > 의상 #42578 프로그래머스 코딩 테스트 연습 문제를 ChatGPT에게 물어보았습니다. 문제는 https://school.programmers.co.kr/learn/courses/30/lessons/42578 를 참조하세요. [Python] from collections import defaultdict def solution(clothes): counts = defaultdict(int) for _, category in clothes: counts[category] += 1 answer = 1 for count in counts.values(): answer *= count + 1 return answer - 1 위 코드에서 counts는 의상 종류별로 개수를 저장하는 딕셔너리입니다. defaultdict(int)를.. 2023. 6. 14. 이전 1 다음 반응형