#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<completion.size(); i++)
if(participant[i].compare(completion[i]) != 0)
{
answer = participant[i];
return answer;
}
return participant[participant.size()-1];
}
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[Level 1][C++] 체육복 (0) | 2024.10.01 |
---|---|
[Level 1][C++] 모의고사 (0) | 2024.10.01 |
[Level 1][C++] 2016년 (0) | 2024.10.01 |
[Level 1][C++] K번째 수 (0) | 2024.10.01 |
[Level 1][C++] 문자열 내 마음대로 정렬하기 (0) | 2024.10.01 |