개발 공부
(프로그래머스)(자바) 완주하지 못한 선수 본문
https://programmers.co.kr/learn/courses/30/lessons/42576
import java.util.*;
class Solution {
public String solution(String[] participant, String[] completion) {
String answer = "";
Map<String, Integer> hm = new HashMap<>();
for(String pt : participant){
if(hm.get(pt) == null){
hm.put(pt,1);
}else{
hm.put(pt, hm.get(pt)+1);
}
}
for(String cp : completion){
hm.put(cp, hm.get(cp)-1);
}
for(String key : hm.keySet()){
if(hm.get(key) == 1){
answer = key;
}
}
return answer;
}
}
'알고리즘' 카테고리의 다른 글
(프로그래머스)(자바) 전화번호 목록 (0) | 2021.07.07 |
---|---|
(프로그래머스)(자바) 타겟 넘버 (0) | 2021.07.07 |
(프로그래머스)(자바) 더 맵게 (0) | 2021.07.07 |
(프로그래머스)(자바) K번째수 (0) | 2021.07.07 |
(프로그래머스)(자바) 모의고사 (0) | 2021.07.07 |
Comments