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
- Binary Search
- Tree
- Math
- geometry
- 구현
- 코딩테스트
- two pointers
- Counting
- Matrix
- java
- Stack
- simulation
- Class
- database
- implement
- 코테
- 자바
- array
- SQL
- greedy
- sorting
- string
- Number Theory
- Binary Tree
- Data Structure
- 파이썬
- bit manipulation
- Method
- dynamic programming
- hash table
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2206. Divide Array Into Equal Pairs 본문
1. Input
1) int[] nums
2. Output
1) nums의 요소를 n개의 쌍으로 나눌 수 있다면 true, 아니면 false를 반환
- 한 쌍의 요소는 같은 값이어야 한다.
- 한 쌍에 있는 요소의 수는 같아야 한다.
3. Constraint
1) nums.length == 2 * n
2) 1 <= n <= 500
3) 1 <= nums[i] <= 500
4. Example
Input: nums = [3,2,3,2,2,2] -> Output: true
설명: 6 / 2 = 3쌍으로 나누면 (2,2), (2,2), (3.3)으로 나눌 수 있다. 따라서 true를 반환한다.
5. Code
1) 첫 코드(2023/04/28)
class Solution {
public boolean divideArray(int[] nums) {
boolean answer = true;
HashMap<Integer,Integer> map = new HashMap<>();
for(int i: nums)
map.put(i, map.getOrDefault(i, 0)+1);
Iterator it = map.values().iterator();
while(it.hasNext() && answer){
if((int)it.next()%2!=0)
answer = false;
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2239. Find Closest Number to Zero (0) | 2023.04.30 |
---|---|
[LeetCode/Easy] 2215. Find the Difference of Two Arrays (0) | 2023.04.28 |
[LeetCode/Easy] 2200. Find All K-Distant Indices in an Array (0) | 2023.04.27 |
[LeetCode/Easy] 2190. Most Frequent Number Following Key In an Array (0) | 2023.04.27 |
[LeetCode/Easy] 2133. Check if Every Row and Column Contains All Numbers (0) | 2023.04.27 |