Adding transpose lookup method. This will matrix transpose arrays that are…
Adding transpose lookup method. This will matrix transpose arrays that are passed in, and then work like items over the resulting list of lists. e.g.: Transpose a list of arrays: [1, 2, 3], [4, 5, 6] -> [1, 4], [2, 5], [3, 6] Replace any empty spots in 2nd array with "": [1, 2], [3] -> [1, 3], [2, ""]
Showing
Please
register
or
sign in
to comment