Leetcode 0015. 3Sum
Posted on Thu 12 December 2024 in Leetcode • Tagged with k-sum
Question Link : https://leetcode.com/problems/3sum/
Difficulty: Medium
Premium: False
Question
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 …
Continue reading