🔗 문제 https://leetcode.com/problems/3sum/ 3Sum - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 📝 풀이 순서대로 정렬하면 풀이가 더 간단해진다. 중복저장되는 것을 방지하기 위해 아래 코드 추가 💻 코드 (java) class Solution { public List threeSum(int[] nums) { List answerList = new ArrayList(); Arrays.sort(nums); for (int i = ..