MCPcopy Create free account
hub / github.com/chaharnishant11/CodeIn10DSA / main

Function main

Recursion/Homework/Subsequences.cpp:33–47  ·  view source on GitHub ↗

{ Driver Code Starts.

Source from the content-addressed store, hash-verified

31
32// { Driver Code Starts.
33int main(){
34 int tc;
35 cin >> tc;
36 while(tc--){
37 string s;
38 cin >> s;
39 Solution ob;
40 vector<string> res = ob.AllPossibleStrings(s);
41 for(auto i : res)
42 cout << i <<" ";
43 cout << "\n";
44
45 }
46 return 0;
47} // } Driver Code Ends

Callers

nothing calls this directly

Calls 1

AllPossibleStringsMethod · 0.80

Tested by

no test coverage detected