본문 바로가기
알고리즘/프로그래머스 1단계

[프로그래머스] 완주하지 못한 선수

by lanuarius19 2022. 4. 24.
728x90

 

프로그래머스 1단계
완주하지 못한 선수

https://programmers.co.kr/learn/challenges

 

문제 설명

 

완주하지 못한 선수

 

 

 

풀이

 

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];
                break;
            }
        }
        
        if(answer.equals("")) {
            answer = participant[participant.length-1];
        }
        
        return answer;
    }
}
 
728x90

댓글