https://leetcode.com/problems/3sum/submissions/ 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 코드 1 class Solution { public: vector threeSum(vector& nums) { set s; int cnt = 0; sort(nums.begin(), nums.end()); for (int i = 0; i