Hello,
I have a list of sublists with differing numbers of members. I want to insert a varying number of members to the beginning of each sublist. So I have my two lists of sublists, and I want to combine them on the level of sublists, but I can’t get the list levels worked out.
Given [ {a,b,c} , {d,e,f,g} ] and [ {1,1,1} , {1, 1) ]
I want [ {1,1,1,a,b,c} , {1,1,d,e,f,g}
Here’s the closest I’ve gotten:
It’s almost right, but it’s inserting a list at the beginning of each list instead of the actual members. I’ve been messing around with list levels and I can’t figure it out, can someone point me in the right direction?