프로그래머스 위장
2021. 10. 12. 18:50ㆍ문제풀기/프로그래머스
https://programmers.co.kr/learn/courses/30/lessons/42578
고등학생 때 배우는 '확률과 통계'를 구현하는 느낌이다.
각 옷의 type별로 가지고 있는 옷 개수를 세고, 옷 개수 +1의 곱들에서 아무것도 안입은 경우 한 번을 빼주면 된다.
def solution(clothes):
answer = 1
cloth_dict = dict()
for cloth,types in clothes:
if types in cloth_dict:
cloth_dict[types] += 1
else:
cloth_dict[types] = 2
for t in cloth_dict:
answer *= cloth_dict[t]
answer -= 1
return answer
'문제풀기 > 프로그래머스' 카테고리의 다른 글
★프로그래머스 2021 카카오 채용연계형 인턴십 표 편집 (0) | 2021.10.13 |
---|---|
프로그래머스 베스트 앨범 (0) | 2021.10.12 |
프로그래머스 : 괄호 회전하기 (0) | 2021.10.08 |
프로그래머스 : 후보키 (0) | 2021.10.08 |
프로그래머스 : 예상 대진표 (0) | 2021.10.08 |