반응형
import java.util.Arrays;
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;
}
}
return participant[participant.length - 1];
}
}
반응형
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]JAVA - Level 2. 문자열 압축 (0) | 2022.04.17 |
---|---|
[프로그래머스]JAVA - Level 2. 오픈채팅방 (0) | 2022.04.11 |
[프로그래머스]JAVA - Level 1. 비밀지도 (0) | 2022.04.07 |
[프로그래머스]JAVA - Level 1. 키패드 누르기 (0) | 2022.04.06 |
[프로그래머스]JAVA - Level 1. K번째 수 (0) | 2022.04.06 |