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
'알고리즘 > 프로그래머스 1단계' 카테고리의 다른 글
[프로그래머스] 숫자 문자열과 영단어 (0) | 2022.04.24 |
---|---|
[프로그래머스] 행렬의 덧셈 (0) | 2022.04.24 |
[프로그래머스] 이상한 문자 만들기 (0) | 2022.04.24 |
[프로그래머스] 정수 제곱근 판별 (0) | 2022.04.24 |
[프로그래머스] 2016년 (0) | 2022.04.24 |
댓글