4 Sum - Find any quadruplet having given sum
Given an array arr[] of n integers and an integer target, the task is to find any quadruplet in arr[] such that it's sum is equal to the target. Note: If there are multiple quadruplets with sum = target, return any one of them.Examples:Input: arr[] = {2, 4, 6, 8, 1, 3}, target = 15Output: {2, 4, 6,