Suppose I have this list:
[ [5, 44, 73] , [7, 21, 99], [1, 32, 100] ]
What is the MOST efficient way to turn it into this list?
[ 5, 7, 1, 44, 21, 32, 73, 99, 100 ]
Notice, I grab the first from each. Then the 2nd element from each. Of course, this function needs to be done with X elements.
I've tried it, but mine has many loops,and I think it's too long and complicated.
Thanks.