-
완주하지 못한 선수프로그래머스알고리즘 2020. 10. 1. 13:32
#include <string> #include <vector> #include<algorithm> #include<iostream> using namespace std; string solution(vector<string> participant, vector<string> 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]; } } }
'프로그래머스알고리즘' 카테고리의 다른 글
위장 (0) 2020.10.01 완주하지 못한 선수 hash map 사용 (0) 2020.10.01 콜라츠 추측 (0) 2020.10.01 수박문제 (0) 2020.10.01 문자열문제 (0) 2020.09.30