728x90
풀이
import java.util.*;
class Solution {
public String solution(String[] participant, String[] completion) {
String answer = "";
Arrays.sort(participant);
Arrays.sort(completion);
for(int i=0; i<completion.length; i++){
if(!participant[i].equals(completion[i])){
answer = participant[i];
return answer;
}
}
answer = participant[completion.length];
return answer;
}
}
결과
'코딩 문제 > 프로그래머스' 카테고리의 다른 글
프로그래머스 - 코딩테스트 - Level1 - 모의고사 (0) | 2021.02.22 |
---|---|
프로그래머스 - 코딩테스트 - Level1 - 신규 아이디 추천 (0) | 2021.02.22 |
프로그래머스 - 코딩테스트 - Level1 - 크레인 인형뽑기 게임 (0) | 2021.02.22 |
프로그래머스 - 코딩테스트 - Level1 - 두 개 뽑아서 더하기 (0) | 2021.02.22 |
프로그래머스 - 실력체크 - 레벨 2 - 8번째 (0) | 2021.02.16 |