Could anyone tell me how to sort an array of arrays by 3 elements in the inner arrays?
For example,
@outer =[A, B, C, D, E, F, G]
Here A, B, C, D, E, F, G are all arrays of size 10.
How do I sort the array @outer by 3 elements in the inner arrays?
Thanks