Javascript/LeetCode
15. 3SUM
문제 https://leetcode.com/problems/3sum/description/ 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. 주어진 정수 배열들로 인덱스가 겹치지않고, 모든 합이 0에 만족하는 삼중 항인 [nums[i], nums[j], nums[k]] 반환하세요. 중복 삼중항은 없어야합니다. 무식하게 풀어보기 1 2 3 4 5 6 7 8 9 1..
2023. 6. 13. 02:58