728x90
https://yummy0102.tistory.com/186?category=966544
이 문제를 이번엔 자바 코드로 풀어봤다~
자바코드)
import java.util.*;
class Solution {
public String solution(String[] participant, String[] completion) {
Arrays.sort(participant);
Arrays.sort(completion);
int i;
for ( i=0; i<completion.length; i++){
if (!participant[i].equals(completion[i])){
return participant[i];
}
}
return participant[i];
}
}
알고리즘은 똑같!
import java.util.*; 로 선언하면 사용하기 편하더라~~
728x90
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[이분탐색] Level 3 입국심사 (0) | 2022.02.14 |
---|---|
[해시] Level 2 전화번호 목록 - JAVA (0) | 2022.02.12 |
[탐욕법(Greedy)] Level 1 체육복 - JAVA (0) | 2022.02.10 |
[정렬] Level 1 K번째 수 (0) | 2022.02.09 |
[DP] Level 3 N으로 표현 (0) | 2022.02.08 |
댓글