Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working with Ruby scripting language. I have a snippet here. Just want to know what is happening inside that with in the loop. Here is my code

#!/usr/bin/ruby

presidents = ["Ford", "Carter", "Reagan", "Bush1", "Clinton", "Bush2"]

for ss in 0...presidents.length
  print ss, ": ", presidents[presidents.length - ss - 1], "\n";
end

I know that it is to print the array in reverse order, but my intention is to know what is happening in

"presidents[presidents.length - ss - 1]"

Please help me understanding this. I am really confused with this.

share|improve this question
It's a good idea to link to the website that had the code snippet in question, so that people answering the question can see it in context. Was it troubleshooters.com/codecorn/ruby/basictutorial.htm ? – Andrew Grimm Nov 17 '11 at 22:21

1 Answer

up vote 6 down vote accepted

It means that, whoever wrote this code, he was still learning Ruby :-p. That's more idiomatic and, I hope, self-explanatory:

presidents.reverse_each.with_index do |name, index|
  puts "#{index}: #{name}"
end

About presidents[presidents.length - ss - 1]: ss starts at 0, so length-0-1 = length-1 -> last element of presidents. On the last iteration of the loop you have length - (length-1) -1 = 0, so the first element of presidents is shown. A simple reverse, nothing fancy.

share|improve this answer
2  
.reverse_each.with_index avoids the extra array. – steenslag Nov 17 '11 at 12:09
@steenslag: a bit more tricky for a novicer to understand, but yes, conceptually it's the right way if you are going to loop over values. – tokland Nov 17 '11 at 13:06
1  
One website that had this code snippet also had many other ways of approaching the problem. troubleshooters.com/codecorn/ruby/basictutorial.htm – Andrew Grimm Nov 17 '11 at 22:20
thank you one and all .Really healp full – Kishore Babu Jetty Nov 18 '11 at 5:21
@Andrew: it makes sense, loops can be a good example of progressive improvement (from naive C-style till more idiomatic functional Ruby). – tokland Nov 18 '11 at 8:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.