题解 | #添加元素#

添加元素

http://www.nowcoder.com/practice/941bcfa5b87940869fda681c1597fd3a

function insert(arr, item, index) {
            const newArr = []
            for (let i = 0; i < arr.length; i++) {
                if(i===index) {
                    newArr.push(item)
                    newArr.push(arr[i])
                }else {
                    newArr.push(arr[i])
                }
            }

            return newArr;
        }

全部评论
我第二次也用了这个方法但是失败了,因为我追击的时候少了push(arr[i])
点赞 回复 分享
发布于 2021-07-12 13:29

相关推荐

已老实求offer😫:有点像徐坤(没有冒犯的意思哈)
点赞 评论 收藏
分享
评论
3
收藏
分享
牛客网
牛客企业服务