题解 | #蛇形矩阵#

蛇形矩阵

http://www.nowcoder.com/practice/649b210ef44446e3b1cd1be6fa4cab5e

let num = parseInt(readline());
let arr = [];
let len = arr.length;
while(num>len){
    let child=[]
    if(len===0){
        child=[1]
    }else{			
        child=[arr[len-1][0]+len]
    }	
    for(let i=len,j=0;i<num-1;i++,j++){
        child.push(child[j]+i+2)
    }
    len+=1
    arr.push(child)
}
arr.forEach(item=>{
    console.log(item.join(' '))
})
全部评论

相关推荐

oppo 应用软开 22*15+0.5*12
拿到了ssp完美:真的坎坷,但是你至少拿到这么多offer了!
点赞 评论 收藏
分享
10-31 14:54
已编辑
门头沟学院 算法工程师
点赞 评论 收藏
分享
joe2333:怀念以前大家拿华为当保底的日子
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务