Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- SQL
- Method
- Binary Search
- 파이썬
- Class
- java
- 코딩테스트
- 코테
- 자바
- 구현
- Number Theory
- hash table
- two pointers
- Tree
- array
- simulation
- dynamic programming
- Math
- sorting
- database
- greedy
- string
- bit manipulation
- Binary Tree
- Matrix
- Data Structure
- implement
- geometry
- Counting
- Stack
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.1] 완주하지 못한 선수 본문
수많은 마라톤 선수들이 마라톤에 참여하였다. 단 한 명의 선수를 제외하고는 모든 선수가 마라톤을 완주하였다.
1. Input, Output, Example
- 마라톤에 참여한 선수들의 이름이 담긴 배열 participant와 완주한 선수들의 이름이 담긴 배열 completion이 주어질 때, 완주하지 못한 선수의 이름을 반환
2. Constraint
1) 마라톤 경기에 참여한 선수의 수는 1명 이상 100,000명 이하
2) completion의 길이는 participant의 길이보다 1 작다.
3) 참가자의 이름은 1개 이상 20개 이하의 알파벳 소문자로 이루어져 있다.
4) 참가자 중에는 동명이인이 있을 수 있다.
3. Code
1) 첫 코드
import java.util.*;
class Solution {
public String solution(String[] participant, String[] completion) {
Arrays.sort(participant);
Arrays.sort(completion);
String ans = participant[participant.length-1];
for(int i=0 ; i<completion.length ; i++)
if(!participant[i].equals(completion[i]))
return participant[i];
return ans;
}
}
- +1
2) HashSet을 이용한 코드
import java.util.*;
class Solution {
public String solution(String[] participant, String[] completion) {
HashMap<String, Integer> m = new HashMap<>();
for(String s : completion)
m.put(s, m.getOrDefault(s,0)+1);
for(String s : participant){
if(!m.containsKey(s)) return s;
if(m.get(s)<=0) return s;
m.put(s,m.get(s)-1);
}
List<String> list = new ArrayList<>(m.keySet());
return list.get(0);
}
}
- 1번 코드보다 훨씬 빠르다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.1] 크레인 인형뽑기 게임 (0) | 2023.07.04 |
---|---|
[프로그래머스/Lv.1] 문자열 나누기 (0) | 2023.07.04 |
[프로그래머스/Lv.1] 숫자 짝꿍 (0) | 2023.07.04 |
[프로그래머스/Lv.1] 기사단원의 무기 (0) | 2023.07.04 |
[프로그래머스/Lv.1] [1차] 다트 게임 (0) | 2023.07.04 |