module Inverter
Constants
- VERSION
Public Instance Methods
reverse(lista)
click to toggle source
# File lib/inverter/reverse.rb, line 3 def reverse(lista) aux = lista.map {|x| x} lista_invertida = Exam::DList.new(aux) end