Created
December 8, 2017 13:40
-
-
Save zernie/a48ce87badea8cdad73b85a285fd5b20 to your computer and use it in GitHub Desktop.
This file contains 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(array) | |
array.reduce([]) do |sum, n| | |
sum + (n.kind_of?(Array) ? flatten(n) :[n]) | |
end | |
end | |
p flatten([[1,2,[3]],4]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment