一行代码搞定 const solution = (arr) => [].concat(...arr.map(item => Array.isArray(item) ? solution(item) : item))
发表评论 (审核通过后显示评论):