keshavsingh4522 / hacktoberfest

Submit Just 4 PRs to earn SWAGS and Tshirts🔥
https://hacktoberfest.digitalocean.com/
Creative Commons Zero v1.0 Universal
847 stars 3.91k forks source link

C++ Program on 4sum #4610

Open AveekBhatt opened 11 months ago

AveekBhatt commented 11 months ago

What type of PR is this? (check all applicable)

Description

[18. 4Sum] (https://leetcode.com/problems/4sum/) Medium Topics Companies Given an array nums of n integers, return an array of all the unique quadruplets [nums[a], nums[b], nums[c], nums[d]] such that:

0 <= a, b, c, d < n a, b, c, and d are distinct. nums[a] + nums[b] + nums[c] + nums[d] == target You may return the answer in any order.

Example 1:

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

Add Link of GitHub Profile