编程题数组合并求和本页总览数组合并求和 题目描述 给定数组 arr = [ [ 2, 6, -1 ], [ 1, 5 ], [ 7, 7, [ 2, 3 ] ] ],请实现一个函数 flatSum,调用 flatSum(arr) 返回结果为 32 ,即将给定 arr 完全扁平化并求和。