An Array of Arrays using Array.sort_by

T

Tom Eaton

Hi,

I have:

myarray = Array.new
mylist = [1,2]
mylist2 = [3,1]
mylist3 = [2,1]
myarray.push(mylist)
myarray.push(mylist2)
myarray.push(mylist3)
myarray.sort
myarray.each do |x|
puts x[0]
end

And I would like to be able to sort myarray by the first or second
elements in the mylists...

I have been on this problem for a few hours, ay help would be
appreciated.
 
T

Tom Eaton

Tom said:
Hi,

I have:

myarray = Array.new
mylist = [1,2]
mylist2 = [3,1]
mylist3 = [2,1]
myarray.push(mylist)
myarray.push(mylist2)
myarray.push(mylist3)
myarray.sort
myarray.each do |x|
puts x[0]
end

And I would like to be able to sort myarray by the first or second
elements in the mylists...

I have been on this problem for a few hours, ay help would be
appreciated.

Please ignore this. I have the answer by searching the forums... Which i
should of done before i posted. I do apologies :( Can an Admin remove
this post please?
 
R

Robert Klemme

2010/2/9 Tom Eaton said:
Tom said:
I have:

myarray = Array.new
mylist = [1,2]
mylist2 = [3,1]
mylist3 = [2,1]
myarray.push(mylist)
myarray.push(mylist2)
myarray.push(mylist3)

You can make your life a bit easier by doing

myarray = [
[1,2],
[3,1],
[2,1],
]
myarray.sort
myarray.each do |x|
puts x[0]
end

And I would like to be able to sort myarray by the first or second
elements in the mylists...

I have been on this problem for a few hours, ay help would be
appreciated.

Please ignore this. I have the answer by searching the forums... Which i
should of done before i posted. I do apologies :( Can an Admin remove
this post please?

No. ;-) Rather, please post your solution so others can benefit once
they search through the archive.

Kind regards

robert
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,044
Latest member
RonaldNen

Latest Threads

Top