프로그래머스알고리즘
-
완주하지 못한 선수프로그래머스알고리즘 2020. 10. 1. 13:32
#include #include #include #include using namespace std; string solution(vector participant, vector completion) { 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]; } } }