Hi,
I have a number of lists, of varying length, and I'd like to combine all the items in the lists into one list.
For example:
list1 = {"a", "b", "c"};
list2 = {"d", "e"};
list3 = {"f", "g", "h", "i"};
.... the number of lists ranges from 7 to 10.
Want to create
list = {"a", "b", "c", "d", "e"};
I have been creating the final list
Insert Into(list1, list2);
Insert Into(list1, list3);
.... and so on.
(I don't mind the list items are added to list1)
Is there a more efficient way of doing this? Insert Into() doesn't seem to take more than 1 add-on parameter.
Thank you.