Skip to content

Instantly share code, notes, and snippets.

@ruvaleev
Created June 18, 2020 14:09
Show Gist options
  • Save ruvaleev/c9619b8daf0ff7d358c0350507f38298 to your computer and use it in GitHub Desktop.
Save ruvaleev/c9619b8daf0ff7d358c0350507f38298 to your computer and use it in GitHub Desktop.
def custom_reverse(array)
array.each_with_object([]) { |i, result| result.unshift(i) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment