Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@allred
Created November 7, 2017 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save allred/24f69088c8f62b9d65a6c476e11afbd3 to your computer and use it in GitHub Desktop.
Save allred/24f69088c8f62b9d65a6c476e11afbd3 to your computer and use it in GitHub Desktop.
Ruby Array Flatten
def flatten(array, accum=[])
array.each do |a|
if a.is_a? Array
flatten(a, accum)
else
accum.push(a)
end
end
return accum
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment