I have a List and I'm grouping it into different lists.
From:
List -> "a","b","c","it","as","am","cat","can","bat"
Into
List1 -> -a,b,c
List2 -> it,as,am
List3 -> cat,can,bat
How can I concat the all possible combination from this lists, with output like:
a,it,cat b,it,cat c,it,cat a,am,cat b,am,cat c,am,cat . . . . etc so on...