Skip to content

Instantly share code, notes, and snippets.

@vl3
Created November 10, 2016 05:36
Show Gist options
  • Save vl3/3ed54da36803f47b190f1082c384428d to your computer and use it in GitHub Desktop.
Save vl3/3ed54da36803f47b190f1082c384428d to your computer and use it in GitHub Desktop.
CitrusByte exercise
def flatten ary
flattenized_ary = []
ary.each do |element|
if element.class == Array
flattenized_ary += flatten(element)
else
flattenized_ary << element
end
end
flattenized_ary
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment