처음 든 생각 - 카테고리만 확인해서 조합을 짜봐야겠다 - 조합이니깐 combination 라이브러리를 활용해서 모든 조합 구한 다음에 만약 같은 카테고리의 아이템이 있으면 배제하고 카운트를 해야겠다. 나의 답 from itertools import combinations def solution(clothes): answer = 0 l = [] x = [] for i in clothes: l.append(i[1]) for i in range(len(l)): x.append(list(combinations(l,i+1))) for j in x: for k in j: if len(set(list(k))) == len(list(k)): answer+=1 return answer 카테고리만 담을 리스트를 만들어주..