본문 바로가기
프로그래머스

완주하지 못한 선수

by paysmile 2020. 10. 19.
#include <string>
#include <vector>
#include <unordered_map>
using namespace std;

string solution(vector<string> participant, vector<string> completion) {
    unordered_map<string,int> map;
    
    for(string name:participant){
        map[name]++;
    } 
    for(string name:completion){
        map[name]--;
    }
    for(auto answer:map){
        if(answer.second >0)
            return answer.first;
    }
}

 

'프로그래머스' 카테고리의 다른 글

자물쇠와 열쇠 C++  (0) 2020.11.03
괄호 변환 C++  (0) 2020.11.02
방문 길이 C++  (0) 2019.10.23
스킬트리 C++  (0) 2019.10.23
서울에서 경산까지 C++  (0) 2019.10.09