-
[🥲 프로그래머스] 위장 - hashAlgorithm/1일 1코테 2021. 7. 23. 17:00반응형
https://programmers.co.kr/learn/courses/30/lessons/42578
✅ 내가 쓴 풀이
def solution(clothes): clothes_hash = {} for clothe in clothes: if clothe[1] not in clothes_hash: clothes_hash[clothe[1]] = 1 else: clothes_hash[clothe[1]] += 1 answer = 1 for clothe in clothes_hash.values(): answer *= clothe+1 # 해당 카테고리를 아예 안입는 경우를 고려해서 +1 return answer - 1 # 아무것도 안입는 것 제외
반응형'Algorithm > 1일 1코테' 카테고리의 다른 글
[??? 프로그래머스] 조이스틱 - 탐욕법 (0) 2021.07.25 [🥲 프로그래머스] 베스트앨범 - hash (0) 2021.07.24 [🥲 프로그래머스] 전화번호 목록 - hash (0) 2021.07.22 [😍 프로그래머스] 완주하지 못한 선수 - hash (0) 2021.07.22 [😍 프로그래머스-카카오인턴] 키패드 누르기 (0) 2021.07.22