Skip to content

Instantly share code, notes, and snippets.

@Irostovsky
Created September 16, 2016 15:15
Show Gist options
  • Save Irostovsky/7b894e064970b6a256cf26ef726eb71c to your computer and use it in GitHub Desktop.
Save Irostovsky/7b894e064970b6a256cf26ef726eb71c to your computer and use it in GitHub Desktop.
flatten
def flattify(array)
array.each_with_object([]) do |element, flattened|
flattened.push *(element.is_a?(Array) ? flattify(element) : element)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment