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
- 코테
- Matrix
- Tree
- bit manipulation
- hash table
- geometry
- Class
- 구현
- database
- two pointers
- 파이썬
- Binary Search
- Stack
- Binary Tree
- dynamic programming
- 코딩테스트
- greedy
- Data Structure
- Number Theory
- 자바
- Counting
- array
- string
- sorting
- implement
- simulation
- SQL
- java
- Math
- Method
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2441. Largest Positive Integer That Exists With Its Negative 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 2441. Largest Positive Integer That Exists With Its Negative
무지맘 2023. 5. 4. 14:281. Input
1) int[] nums
2. Output
1) nums에 양수와 음수가 모두 있는 수 중 가장 큰 양수를 반환
2) 1)에 해당하는 수가 없다면 -1을 반환
3. Constraint
1) 1 <= nums.length <= 1000
2) -1000 <= nums[i] <= 1000
3) nums[i] != 0
4. Example
Input: nums = [-1,2,-3,3] -> Output: 3
Input: nums = [-1,10,6,7,-7,1] -> Output: 7
Input: nums = [-10,8,6,7,-2,-3] -> Output: -1
5. Code
1) 첫 코드(2023/05/04)
class Solution {
public int findMaxK(int[] nums) {
Arrays.sort(nums);
HashSet<Integer> set = new HashSet<>();
int k = 0;
for(int i=0 ; i<nums.length ; i++){
if(nums[i]<0) set.add(nums[i]);
else if(set.contains(-nums[i]))
k = Math.max(k, nums[i]);
}
return k==0 ? -1 : k;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[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 |
[프로그래머스/Lv.0] 배열 조각하기 (0) | 2023.05.03 |
[프로그래머스/Lv.1] 예산 (0) | 2023.05.03 |
[LeetCode/Easy] 2437. Number of Valid Clock Times (0) | 2023.05.03 |