ruby array_flatten.rb

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby array_flatten.rb相关的知识,希望对你有一定的参考价值。

class Array
    # Returns the flatten version of the array
    # example: [[1,2,[3]],4] -> [1, 2, 3, 4]
    def flatten
        out = []
        self.each do | e |
            if e.is_a? Array
                out += e.flatten
            else
                out.push(e)
            end
        end
        return out
    end
end

test_arrays = [
    [[1,2,[3]],4],
    [[1,[2,3,[[4]]]]],
    []
]

for test_array in test_arrays
    puts "#{test_array} -> #{test_array.flatten.to_s}"
end
# Output:
# [[1, 2, [3]], 4] -> [1, 2, 3, 4]
# [[1, [2, 3, [[4]]]]] -> [1, 2, 3, 4]
# [] -> []

以上是关于ruby array_flatten.rb的主要内容,如果未能解决你的问题,请参考以下文章

ruby [Ruby Cheat] Cheatsheet #ruby

Ruby运算符

Ruby 25 岁了!Ruby 之父说 Ruby 3 有望 3 倍提速

如何学习ruby?Ruby学习技巧分享

ruby Ruby脚本,看看是否用openssl编译了ruby

什么是ruby?