DSA-Questions
DSA-Questions copied to clipboard
Find All Four Sum Numbers
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
Pls assign me this issue