Skip to content

Instantly share code, notes, and snippets.

@brbrr
Created May 25, 2017 07:41
Show Gist options
  • Save brbrr/0b0f3159519f794c772d0f30168bbeff to your computer and use it in GitHub Desktop.
Save brbrr/0b0f3159519f794c772d0f30168bbeff to your computer and use it in GitHub Desktop.
def flatten(array)
array.reduce([]) do |arr, el|
arr.push *(el.is_a?(Array) ? flattify(el) : el)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment