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
- 코테
- greedy
- dynamic programming
- 코딩테스트
- Stack
- database
- simulation
- Tree
- Binary Search
- array
- Method
- Number Theory
- hash table
- SQL
- 자바
- Class
- Counting
- java
- two pointers
- Math
- Data Structure
- 파이썬
- Binary Tree
- geometry
- Matrix
- implement
- sorting
- string
- bit manipulation
- 구현
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 349. Intersection of Two Arrays 본문
1. Input
1) int[] nums1
2) int[] nums2
2. Output
1) nums1과 nums2의 교집합을 반환
- 이때 중복되는 요소는 1번만 포함한다.
- 담는 순서는 상관 없다.
3. Constraint
1) 1 <= nums1.length, nums2.length <= 1000
2) 0 <= nums1[i], nums2[i] <= 1000
4. Example
Input: nums1 = [1,2,2,1], nums2 = [2,2] -> Output: [2]
Input: nums1 = [4,9,5], nums2 = [9,4,9,8,4] -> Output: [9,4]
5. Code
1) 첫 코드(2023/05/18)
class Solution {
public int[] intersection(int[] nums1, int[] nums2) {
HashSet<Integer> s1 = new HashSet<>();
HashSet<Integer> s2 = new HashSet<>();
for(int i : nums1)
s1.add(i);
for(int i : nums2)
s2.add(i);
s1.retainAll(s2);
int[] ans = new int[s1.size()];
Iterator it = s1.iterator();
for(int i=0 ; i<ans.length ; i++)
ans[i] = (int)it.next();
return ans;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 389. Find the Difference (0) | 2023.05.18 |
---|---|
[LeetCode/Easy] 387. First Unique Character in a String (0) | 2023.05.18 |
[백준 온라인 저지] 11653. 소인수분해 (0) | 2023.05.16 |
[LeetCode/Easy] 206. Reverse Linked List (0) | 2023.05.15 |
[LeetCode/Easy] 169. Majority Element (0) | 2023.05.13 |