https://school.programmers.co.kr/learn/courses/30/lessons/42578
dictionary를 이용해서 푸는 문제
def solution(clothes):
answer = 1
dict = {}
clen = len(clothes)
for i in range(clen):
if clothes[i][1] in dict:
dict[clothes[i][1]] += 1
else:
dict[clothes[i][1]] = 1
for _, value in dict.items():
answer *= value + 1
return answer - 1
728x90
'파이썬알고리즘' 카테고리의 다른 글
연속 부분 수열 합의 개수 (파이썬) (0) | 2024.10.15 |
---|---|
[토스 NEXT] 2022년 코딩테스트 기출문제 파이썬 풀이 (0) | 2024.09.24 |
백준 2108 통계학 (파이썬) (0) | 2024.09.23 |
프로그래머스 귤 고르기 (파이썬) (0) | 2024.09.04 |
백준 2470 두 용액 (파이썬) (1) | 2024.08.28 |