DSA-Questions icon indicating copy to clipboard operation
DSA-Questions copied to clipboard

Find All Four Sum Numbers

Open Adityagupta1625 opened this issue 3 years ago • 1 comments

Question

Given an array of integers and another number. Find all the unique quadruple from the given array that sums up to the given number.

Example :

Input: N = 5, K = 3 A[] = {0,0,2,1,1} Output: 0 0 1 2 $ Explanation: Sum of 0, 0, 1, 2 is equal to K.

Link to Question:

https://practice.geeksforgeeks.org/problems/find-all-four-sum-numbers1732/1

Adityagupta1625 avatar Oct 02 '21 06:10 Adityagupta1625

Pls assign me this issue

Adityagupta1625 avatar Oct 02 '21 10:10 Adityagupta1625