I need to invert the positions of an Array, where the first pass to the last the second to the penultimate and so on.
For example, I have a 3-position Array:
[1,1.00,2300]
[2,1.00,4500]
[3,1.00,2340]
and this should be your result:
[3,1.00,2340]
[2,1.00,4500]
[1,1.00,2300]
Thanks !!!