MCPcopy Create free account
hub / github.com/Hsinha11/Leetcode-solutions / combine

Method combine

77-combinations/combinations.cpp:14–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12 }
13 }
14 vector<vector<int>> combine(int n, int k) {
15 vector<int> c;
16 vector<vector<int>> l;
17 int i =1;
18 comb(i,n,k,l,c);
19 return l;
20 }
21};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected