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
- Math
- database
- greedy
- Number Theory
- two pointers
- 코테
- Method
- array
- string
- Data Structure
- java
- implement
- 파이썬
- Binary Tree
- geometry
- Matrix
- Tree
- Stack
- SQL
- Class
- Binary Search
- hash table
- bit manipulation
- Counting
- 구현
- simulation
- 코딩테스트
- 자바
- dynamic programming
- sorting
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Medium] 137. Single Number II 본문
1. Input
1) int[] nums
- nums의 요소 중 1개를 제외한 모든 요소들은 3번씩 등장한다.
2. Output
1) nums에 딱 1번 등장하는 요소를 찾아 반환
3. Constraint
1) 1 <= nums.length <= 3 * 10^4
2) - 2^31 <= nums[i] <= 2^31 - 1
4. Example
Input: nums = [2,2,3,2] -> Output: 3
5. Code
1) 첫 코드(2023/01/19)
import java.util.*;
HashMap<Integer,Integer> m = new HashMap<Integer,Integer>();
for(int i : nums){
if(m.containsKey(i))
m.replace(i, m.get(i)+1);
else
m.put(i, 1);
}
int answer = 0;
Set set = m.entrySet();
Iterator it = set.iterator();
while(it.hasNext()){
Map.Entry e = (Map.Entry)it.next();
if((int)e.getValue()==1) {
answer = (int)e.getKey();
break;
}
}
return answer;
- 문제에서 요구한 솔루션은 linear runtime complexity, only constant extra space을 이용한 것이었는데 그렇지 못했다.
2) 조금 더 짧게 작성한 코드(2023/07/04)
import java.util.*;
class Solution {
public int singleNumber(int[] nums) {
HashMap<Integer,Integer> m = new HashMap<>();
for(int i : nums)
m.put(i, m.getOrDefault(i,0)+1);
int answer = -1;
for(int i : m.keySet())
if(m.get(i)==1){
answer = i; break;
}
return answer;
}
}
- 아직도 모르겠다..
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 202. Happy Number (0) | 2023.01.23 |
---|---|
[LeetCode/Medium] 151. Reverse Words in a String (0) | 2023.01.20 |
[프로그래머스/Lv.2] 스킬트리 (0) | 2023.01.17 |
[LeetCode/Easy] 104. Maximum Depth of Binary Tree (0) | 2023.01.17 |
[LeetCode/Easy] 2351. First Letter to Appear Twice (0) | 2023.01.16 |