Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View gtoroap's full-sized avatar
💭
Coding

Gustavo Toro gtoroap

💭
Coding
View GitHub Profile
@gtoroap
gtoroap / array_flatten.rb
Last active August 6, 2019 16:13
My own implementation of Array#flatten
class ArrayFlatten
def initialize(arr)
@arr = arr
end
def flatten(level = nil)
_flatten(@arr, 0, level)
end
private