import java.util.Arrays;
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])) {
continue;
} else {
return participant[i];
}
}
return participant[participant.length-1];
}
}
import java.util.HashMap;
class Solution {
public String solution(String[] participant, String[] completion) {
String answer = "";
HashMap<String, Integer> hm = new HashMap<>();
for (String player : participant) hm.put(player, hm.getOrDefault(player, 0) + 1);
for (String player : completion) hm.put(player, hm.get(player) - 1);
for (String key : hm.keySet()) {
if (hm.get(key) != 0){
answer = key;
}
}
return answer;
}
}
해시맵을 이용한 풀이
import java.util.*;
class Solution {
public String solution(String[] participant, String[] completion) {
List<String> list = new ArrayList<>();
for(String s : participant){
list.add(s);
}
for(String s2 : completion){
list.remove(s2);
}
return list.get(0);
}
}
// 효율성 테스트 실패 코드
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 신고 결과 받기 (0) | 2023.03.14 |
---|---|
[프로그래머스/자바] [1차] 비밀지도 (0) | 2023.03.14 |
[프로그래머스/자바] 숫자 문자열과 영단어 (0) | 2023.03.13 |
[프로그래머스/자바] 없는 숫자 더하기 (0) | 2023.03.13 |
[프로그래머스/자바] 점의 위치 구하기 (0) | 2023.03.13 |