수많은 마라톤 선수들이 마라톤에 참여하였습니다. 단 한 명의 선수를 제외하고는 모든 선수가 마라톤을 완주하였습니다.
완주하지 못한 선수의 이름을 return 하도록 solution 함수를 작성해주세요.
const solution = (participants, completion) => {
participants.sort();
completion.sort();
for (let i = 0; i < participants.length; i++) {
if (participants[i] !== completion[i]) {
answer = participants[i]
return answer
}
}
};