알맹이방
[프로그래머스] 위장 - C++ 본문
#include <string>
#include <vector>
#include <map>
using namespace std;
int solution(vector<vector<string>> clothes) {
map<string, int> strMap;
for(vector<string> elem : clothes){
strMap[elem[1]]+=1;
}
int result =1;
map<string, int> ::iterator iter;
for(iter = strMap.begin(); iter!=strMap.end(); iter++){
result *= iter->second+1;
}
result--;
return result;
}
'알고리즘 > [2021] 프로그래머스' 카테고리의 다른 글
[프로그래머스] 단어 변환 - java (0) | 2021.06.01 |
---|---|
[프로그래머스] 가장 큰 수 - java (0) | 2021.05.31 |
[프로그래머스] 전화번호 목록 - C++ (0) | 2021.05.31 |
[프로그래머스] 완주하지 못한 선수 - C++ (0) | 2021.05.30 |
내가 보려고 올리는 정리 - C++ (0) | 2021.05.30 |
Comments