import java.util.*;

class Solution {
    public String solution(String[] participant, String[] completion) {
        Arrays.sort(participant); Arrays.sort(completion);
        
        for(int i=0; i<completion.length; i++) {
            if(!participant[i].equals(completion[i])) {
                return participant[i];
            }
        }
        
        return participant[participant.length-1];
    }
}

'Problem Solving > Programmers' 카테고리의 다른 글

[Level 1] 모의고사  (0) 2022.03.23
[Level 1] K번째수  (0) 2022.03.23
[Level 1] 소수 만들기  (0) 2022.03.23
[Level 1] 크레인 인형뽑기 게임  (0) 2022.03.23
[Level 1] 키패드 누르기  (0) 2022.03.23