티스토리 뷰
https://programmers.co.kr/learn/courses/30/lessons/42578
def solution(clothes):
answer = 1
clothe = {}
for i in range(len(clothes)):
if clothes[i][1] not in clothe:
clothe[clothes[i][1]] = 1
else:
tmp = clothe[clothes[i][1]]
tmp += 1
clothe[clothes[i][1]] = tmp
for c in clothe:
answer *= (clothe[c] + 1)
answer -= 1
return answer
'Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스] 두 개 뽑아서 더하기 - Python (0) | 2020.09.26 |
---|---|
[프로그래머스] 같은 숫자는 싫어 - Python (0) | 2020.07.14 |
[프로그래머스] 네트워크 - Python (0) | 2020.07.11 |
[프로그래머스] 모의고사 - Python (0) | 2020.07.11 |
[프로그래머스] 단어 변환 - Python (0) | 2020.07.11 |