[ 프로그래머스 ] 완주하지 못한 선수 C++ 해시
문제 설명 문제 풀이 #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
2019. 12. 30. 13:27