Created
June 28, 2016 15:53
-
-
Save cabolanoz/1fcf9415d1f6da31751699ca7b38af09 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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