본문 바로가기
::public/코딩테스트 풀이

완주하지 못한 선수

by 해맑은욱 2019. 9. 5.
*완주하지 못한 선수(해시,정렬) 참여 선수 배열 participant, 완주 선수 배열 completion. 
완주하지 못한 선수 이름 리턴. 
 
#include <iostream>
#include <algorithm>
#include <vector>
 
using namespace std
 
string solution(vector participant, vector completion) 
    string answer = ""
     
    sort(participant.begin(), participant.end()); 
    sort(completion.begin(), completion.end()); 
     
    for(int i = 0; i < participant.size(); i++
    { 
        if(participant[i] != completion[i]) 
        { 
            answer = participant[i]; 
            break
        }             
    } 
     
    return answer; 
cs

'::public > 코딩테스트 풀이' 카테고리의 다른 글

위장  (0) 2019.09.05
전화번호 목록  (0) 2019.09.05
직사각형 별 찍기  (0) 2019.09.05
약수 더하기  (0) 2019.09.05
문자열 중에 같은 문자 확인  (0) 2019.09.05