728x90
https://school.programmers.co.kr/learn/courses/30/lessons/42578
나의 풀이
"headgear" - "yellow_hat","green_turban"
"eyewear" - "blue_sunglasses"
이렇게 있다고 할 때, 0 * 2 + 2 = 2, 2 * 1 + 1 이런 식으로 위의 조합에서 경우의 수를 곱해줌
dict에 종류를 key로 하여 item을 넣어주고 len을 이용하여 계산함
def solution(clothes):
clothes_dict = dict()
ans = 0
for i in clothes:
if i[1] not in clothes_dict.keys():
clothes_dict[i[1]] = list()
clothes_dict[i[1]].append(i[0])
else:
clothes_dict[i[1]].append(i[0])
for i in clothes_dict:
cnt_clothes = len(clothes_dict[i])
ans += ans * cnt_clothes + cnt_clothes
return ans
다른 사람의 풀이
def solution(clothes):
from collections import Counter
from functools import reduce
cnt = Counter([kind for name, kind in clothes])
answer = reduce(lambda x, y: x*(y+1), cnt.values(), 1) - 1
return answer
728x90
'Coding Test > programmers' 카테고리의 다른 글
[Python] 파이썬 프로그래머스 무인도 여행 (0) | 2023.02.09 |
---|---|
[Python] 파이썬 프로그래머스 호텔 대실 (0) | 2023.02.08 |
[Python] 파이썬 프로그래머스 괄호 회전하기 (0) | 2022.11.22 |
[Python] 파이썬 프로그래머스 구명보트 (0) | 2022.11.17 |
[Python] 파이썬 프로그래머스 정수 삼각형 (0) | 2022.11.14 |