일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 715. Range Module
- concurrency
- data science
- 315. Count of Smaller Numbers After Self
- 밴픽
- 30. Substring with Concatenation of All Words
- 109. Convert Sorted List to Binary Search Tree
- Generator
- Regular Expression
- iterator
- LeetCode
- 운영체제
- 43. Multiply Strings
- Python Code
- Substring with Concatenation of All Words
- DWG
- Python
- kaggle
- Convert Sorted List to Binary Search Tree
- 파이썬
- t1
- 시바견
- 프로그래머스
- Protocol
- Python Implementation
- attribute
- Class
- shiba
- Decorator
- 컴퓨터의 구조
Archives
- Today
- Total
Scribbling
[Java 101] LeetCode: 15. 3Sum with 2D List 본문
class Solution {
public List<List<Integer>> threeSum(int[] nums) {
List<List<Integer>> ret = new ArrayList<List<Integer>>();
Arrays.sort(nums);
int N = nums.length;
for (int i = 0; i < N - 2; i++) {
if (i > 0 && nums[i] == nums[i-1]) {
continue;
}
int j = i + 1, k = N - 1;
while (j < k) {
int n1 = nums[i], n2 = nums[j], n3 = nums[k];
int sum = n1 + n2 + n3;
if (sum == 0) {
List<Integer> temp = List.of(n1, n2, n3);
ret.add(temp);
while (j < k && nums[j] == n2) {
j += 1;
}
while (j < k && nums[k] == n3) {
k -= 1;
}
} else if (sum < 0) {
j += 1;
} else {
k -= 1;
}
}
}
return ret;
}
}
'Computer Science > Java' 카테고리의 다른 글
[Java 101] 242. Valid Anagram with HashMap (0) | 2023.02.14 |
---|---|
[Java 101] 217. Contains Duplicate with HashSet, Arrays.stream (0) | 2023.02.14 |
[Java 101] LeetCode: 2. Add Two Numbers (0) | 2023.02.14 |
[Java Basics2] 이것이 JAVA다 내용 정리 (0) | 2023.02.13 |
[Java Basics] Major Difference to Python, C++, and JS (0) | 2023.01.31 |