|
String generation
Hi,
I need to create strings based upon the following input data:
S1 = {a,b}
S2 = {1,2,3}
Where you take one element from S1 and combine it with S2. In this example, you would get these strings:
a1,a2,a3,b1,b2,b3
The number of input sets is not necessarily known, and the number of elements in each set is known before the program runs.
Does anyone have any ideas?
Thanks
|