#include
#include
#include
using namespace std;
void combinatePrint(vector& working)
{
for (int x = 0; x < working.size();x++)
{
cout << working[x];
}
cout << endl;
}
template
void combinate(vector& set,int& size,vector& working)
{
if (working.size() == size)
{
combinatePrint(working);
}
else
{
for (int x = 0; x < set.size();x
(
Read more... )