You are viewing a single comment's thread. Return to all comments →
def skip_animals(animals, skip) # Your code here animals.enum_for(:each_with_index).select { |v, i| i >= skip }.map { |v, i| "#{i}:#{v}"} end
Seems like cookies are disabled on this browser, please enable them to open this website
Ruby - Enumerable - each_with_index
You are viewing a single comment's thread. Return to all comments →