https://programmers.co.kr/learn/courses/30/lessons/42576/solution_groups?language=java
import java.util.HashMap;
class Solution {
public String solution(String[] participant, String[] completion) {
String answer = "";
HashMap<String, Integer> hash = new HashMap<String, Integer>();
for (String s : completion) {
hash.put(s, hash.getOrDefault(s, 0) + 1);
}
for (String s : participant) {
if (hash.get(s) == null || hash.get(s) == 0) {
answer = s;
break;
}
hash.put(s, hash.get(s) - 1);
}
return answer;
}
}
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 베스트앨범 - Java (0) | 2020.05.18 |
---|---|
[프로그래머스] 전화번호 목록 (0) | 2020.05.17 |
[프로그래머스] 다리를 지나는 트럭 (0) | 2020.05.16 |
[프로그래머스] 탑 (0) | 2020.05.16 |
[2019 카카오] 무지의 먹방 라이브 (0) | 2020.04.12 |