Skip to content

Instantly share code, notes, and snippets.

@cabolanoz
Created June 28, 2016 15:53
Show Gist options
  • Save cabolanoz/1fcf9415d1f6da31751699ca7b38af09 to your computer and use it in GitHub Desktop.
Save cabolanoz/1fcf9415d1f6da31751699ca7b38af09 to your computer and use it in GitHub Desktop.
def flatten values
result = []
values.each do |value|
result.concat(flatten(value)) if value.kind_of?(Array)
result << value unless value.kind_of?(Array)
end
result
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment