About Miguel Zapico Expertise I can answer question about how to use scripts to consolidate data, connect different systems and automate tasks. I have no experience on using VBScript on web programming.
Experience I have been using VBScript and Windows Scripting Host as my swiss tool for the last 6 years.
Organizations New York PC users group (NYPC)
Independant Computer Consultants Association (ICCA)
Education/Credentials Microsoft MCSE in Windows NT
Expert: Miguel Zapico Date: 8/23/2006 Subject: An algorithm for generating unique number sequences
Question An algorithm for generating unique number sequences from a given set of numbers. eg.
Set {7, 3} the output should be as follows
{7}, {3},
{7 3}, {3 7}
Set {5, 2, 9} the output should be as follows
{5}, {2}, {9},
{5 2}, {2 5}, {5 9}, {9 5}, {2 9}, {9 2},
{5 2 9}, {5 9 2}, {2 5 9}, {2 9 5}, {9 5 2}, {9 2 5}
and more if i have missed...
I need it purely for academic purpose.