KeziaKristina
Programmer
I have problem with sorting an array of array.
@array = (
[200,3],
[100,5],
[250,6],
[700,5],
[370,4],
);
I want to sort descanding the first elemen of array on each index.
The result is like this :
@array = (
[700,5],
[370,4],
[250,6],
[200,3],
[100,5],
);
Thanks..
@array = (
[200,3],
[100,5],
[250,6],
[700,5],
[370,4],
);
I want to sort descanding the first elemen of array on each index.
The result is like this :
@array = (
[700,5],
[370,4],
[250,6],
[200,3],
[100,5],
);
Thanks..