More problems on Recursion
In this article we will be solving few more problems on recursion.
1) Combination sum I
class Solution {
public:
void combo(vector<vector<int>>&result, vector<int>a, vector<int>&v,int i, int n, int tot, int sum){
if(i==n){
if(tot==0) res...