Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Ruby

Idiom #257 Traverse list backwards

Print each index i and value x from the list items, from the last down to the first.

items.each_with_index.reverse_each{|x, i| puts "#{i} #{x}" }
for(int i = items.Count - 1; i >= 0; i--)
{
    Console.WriteLine($"Index = {i}, Item = {items[i]}");
}

New implementation...
< >
programming-idioms.org