I have a list of lists like [[a,c,e],[b,d,f]] and I was wondering how to print out every value from the lists, one at a time from each list.
The order I want when I print is abcdef.
I've been thinking about this for a while but I can't seem to figure it out.
[a,c,e,b,d,f], and then print it. Ah, but that's the wrong order. It's printing the row-major order of your matrix, but you seek the column major order. If only there were a way to transpose a matrix before you concat...