题解 | #蛇形矩阵#
蛇形矩阵
http://www.nowcoder.com/practice/649b210ef44446e3b1cd1be6fa4cab5e
var n=parseInt(readline())
let arr=[1]
for(let i=1;i<n;i++){
arr.push(arr[i-1]+i+1)
}
for(let j=0;j<n;j++){
let str=''
arr.slice(j).forEach((item)=>{
str=str+(item-j)+' '
})
console.log(str)
}