[프로그래머스 / C++] 위장

Seulguo·2022년 7월 14일
0

Algorithm

목록 보기
77/185
post-thumbnail

🐣 문제

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


🐥 코드

#include <string>
#include <vector>
#include <unordered_map>

using namespace std;

int solution(vector<vector<string>> clothes) {
    int answer = 1;
    unordered_map <string, int> hash;
    
    int N = clothes.size();
    for(int i = 0; i < N; i++){
        hash[clothes[i][1]]++;
    }
     
    for(auto i : hash){
       answer *= (i.second + 1);
    }

    return answer - 1;
}

0개의 댓글