Given an array like
x = [1, 3, 5, -1, -3, -5]
If we use the command
x.sort {|i| i}
We are given
x = [-1, -3, -5, 1, 3, 5]
Is there any way, given our array, to have it return it in proper ascending/descending order with negatives? E.g.
x = [-5, -3, -1, 1, 3, 5] or [5, 3, 1, -1, -3, -5]
EDIT:
It seems like x.sort would solve this problem, but if there was a more sophisticated problem in which I want to sort from my array based on values given in a hash e.g.
x = [{:i=>1}, {:i=>2}, {:i=>3}, {:i=>4}, {:i=>5}]
y = {3=>10, 4=>-1, 2=>-2, 5=>-3, 1=>-4}
I want to be able to sort x based on the values in y so that my result is
x = [{:i=>3}, {:i=>4}, {:i=>2}, {:i=>5}, {:i=>1}]
x.sort? – maerics Apr 6 '12 at 21:54sort_by. – Michael Kohl Apr 6 '12 at 22:56