본문 바로가기
Study/Coding Test

[프로그래머스] 의상 Python, C++

by 들숨날숨흡 2023. 8. 1.
728x90

https://school.programmers.co.kr/learn/courses/30/lessons/42578

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

(1) C++

#include <string>
#include <vector>
#include <map>

using namespace std;

int solution(vector<vector<string>> clothes) {
    int answer = 1;
    map<string, int> m;
    for(int i = 0; i < clothes.size(); i++){
        m[clothes[i][1]]++;
    }
    for(auto it:m){
        answer *= (it.second + 1);
    }
    return answer - 1;
}

(2) Python

def solution(clothes):
    answer = 1
    clothes_dict = {}
    for cloth in clothes:
        if cloth[1] not in clothes_dict:
            clothes_dict[cloth[1]] = list()
            clothes_dict[cloth[1]].append(cloth[0])
            continue
        clothes_dict[cloth[1]].append(cloth[0])
    
    for cloth in clothes_dict:
        answer *= len(clothes_dict[cloth]) + 1
    
        
    return answer - 1
728x90