728x90
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
string solution(vector<string> participant, vector<string> completion) {
string answer = "";
sort(participant.begin(), participant.end());
sort(completion.begin(),completion.end());
for(int i = 0 ; i < participant.size(); i++)
{
if(participant[i] != completion[i])
{
return participant[i];
}
}
return answer;
}
728x90
'Archive' 카테고리의 다른 글
LeetCode - Reverse String (0) | 2020.03.13 |
---|---|
프로그래머스 K번째 수 (0) | 2020.03.12 |
프로그래머스 모의고사 CPP (0) | 2020.03.11 |
yield return 종류 (0) | 2020.02.27 |
유니티 Missing Prefab 해결법 (0) | 2020.02.27 |