[프로그래머스/c++] 완주하지 못한 선수
성공 코드(내 코드) 참여자 집합과 완주자 집합이 있을 때, 두 집합의 차집합을 구하면 완주하지 못한 선수를 구할 수 있다. 차집합을 set_difference 함수를 이용하여 구하기 전 sort 함수로 정렬이 먼저 이루어져야 한다. 미완주자 = 참여자 - 완주자 #include #include #include using namespace std; string solution(vector participant, vector completion) { string answer = ""; vector sub(1); sort(participant.begin(), participant.end()); sort(completion.begin(), completion.end()); set_difference(parti..
알고리즘
2022. 8. 18. 23:07