목차

위장

ps
링크programmers.co.kr/…
출처프로그래머스
문제 번호42578
문제명위장
레벨Level 2
분류

애드혹

시간복잡도O(n*l)
인풋사이즈n<=30, l<=20
사용한 언어Python
해결날짜2021/05/22
태그

고득점 Kit - 해시

풀이

코드

"""Solution code for "Programmers 42578. 위장".

- Problem link: https://programmers.co.kr/learn/courses/30/lessons/42578
- Solution link: http://www.teferi.net/ps/problems/programmers/42578
"""

import collections
import functools
import operator


def solution(clothes):
    counter = collections.Counter(type_ for name, type_ in clothes)
    return functools.reduce(operator.mul, (v + 1 for v in counter.values())) - 1