티스토리 뷰

프로그래밍

LeetCode - 3Sum

두덕리온라인 2021. 6. 3. 05:18
728x90
반응형

쿠팡 문제로도 유명한 3SUM이다. 

 

Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0.

Notice that the solution set must not contain duplicate triplets.

 

Example 1:

Input: nums = [-1,0,1,2,-1,-4] Output: [[-1,-1,2],[-1,0,1]]

Example 2:

Input: nums = [] Output: []

Example 3:

Input: nums = [0] Output: []

 

Constraints:

  • 0 <= nums.length <= 3000
  • -105 <= nums[i] <= 105
class Solution {
    public List<List<Integer>> threeSum(int[] nums) {
        Arrays.sort(nums);
        ArrayList<List<Integer>> result = new ArrayList<>();
        for(int i : nums) {
            System.out.println(i);
        }

        for (int i = 0; i < nums.length; i++) {
            int j = i + 1;
            int k = nums.length - 1;

            // 뒷부분 중복 제거 
            // i > 0이란 i-1 즉 뒷자리가 있을때 
            if (i > 0 && nums[i] == nums[i - 1]) {
                continue;
            }

            while (j < k) {
                // 앞부분 중복 제거 
                // k < nums.length - 1: 앞자리 k+1이 있을때 
                // 앞부분이 동일하면 하나 더 당긴다 
                if (k < nums.length - 1 && nums[k] == nums[k + 1]) {
                    k--;
                    continue;
                }

                if (nums[i] + nums[j] + nums[k] > 0) {
                    k--;
                } else if (nums[i] + nums[j] + nums[k] < 0) {
                    j++;
                } else {
                    ArrayList<Integer> l = new ArrayList<>();
                    l.add(nums[i]);
                    l.add(nums[j]);
                    l.add(nums[k]);
                    result.add(l);
                    j++;
                    k--;
                }
            }
        }
        return result;
    }
}
반응형

'프로그래밍' 카테고리의 다른 글

LeetCode - MinStack  (0) 2021.06.03
LeetCode - LRU Cache  (0) 2021.06.03
Semaphore와 Mutex 차이  (0) 2021.03.14
Java HashMap value 역순 정렬  (0) 2020.04.22
Java HashTable 구현  (0) 2020.04.22
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday