Here I will be Uploading all the problems of Subsequence ,subarrays and subsets.
-
subset return using a 2 dimensional array which is dynamically allocated
input:
3 1 2 3
output:
3 2 2 3 1 1 3 1 2 1 2 3
-
subset return using a 2 dimensioinal vector
-
subset print using a single dimensional array
-
subset return which sums up to K
input:
4 2 1 3 2 4
output:
2 2 1 3
-
subset print which sums up to K
I will be adding rest of the problems soon!!