Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 320 Bytes

File metadata and controls

15 lines (13 loc) · 320 Bytes

Given an array of integers and a sum, the task is to print all subsets of given array with sum equal to given sum.

Input : arr[] = {2, 3, 5, 6, 8, 10}
        sum = 10
Output : 5 2 3
         2 8
         10

Input : arr[] = {1, 2, 3, 4, 5}
        sum = 10
Output : 4 3 2 1 
         5 3 2 
         5 4 1