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
- 자바
- geometry
- Matrix
- 코딩테스트
- hash table
- Binary Search
- simulation
- 코테
- Number Theory
- SQL
- Stack
- Data Structure
- implement
- Class
- 구현
- Method
- bit manipulation
- dynamic programming
- 파이썬
- greedy
- two pointers
- Binary Tree
- Tree
- Math
- string
- database
- array
- Counting
- java
- sorting
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2465. Number of Distinct Averages 본문
1. Input
1) int[] nums
2. Output
1) 다음에 따라 구한 평균의 총 개수를 반환
- nums에서 가장 큰 값과 가장 작은 값의 평균을 구한다.
- 그 후 두 수는 nums에서 제거한다.
- 평균의 개수를 구할 때 중복은 세지 않는다.
3. Constraint
1) 2 <= nums.length <= 100
2) nums의 길이는 짝수이다.
3) 0 <= nums[i] <= 100
4. Example
Input: nums = [4,1,4,0,3,5] -> Output: 2
- 0과 5의 평균 = 2.5, nums=[4,1,4,3]
- 1과 4의 평균 = 2.5, nums=[4,3]
- 3과 4의 평균 = 3.5, nums=[]
- 중복되지 않은 평균은 2.5와 3.5 2개다.
5. Code
1) 첫 코드(2023/05/04)
class Solution {
public int distinctAverages(int[] nums) {
int n = nums.length;
Arrays.sort(nums);
HashSet<Float> set = new HashSet<>();
for(int i=0 ; i<n/2 ; i++)
set.add((nums[i]+nums[n-1-i])/2.0f);
return set.size();
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2475. Number of Unequal Triplets in Array (0) | 2023.05.04 |
---|---|
[LeetCode/Easy] 2469. Convert the Temperature (0) | 2023.05.04 |
[LeetCode/Easy] 2460. Apply Operations to an Array (0) | 2023.05.04 |
[LeetCode/Easy] 2455. Average Value of Even Numbers That Are Divisible by Three (0) | 2023.05.04 |
[LeetCode/Easy] 2446. Determine if Two Events Have Conflict (0) | 2023.05.04 |