Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 610 Bytes

0119-杨辉三角Ⅱ.md

File metadata and controls

30 lines (21 loc) · 610 Bytes

给定一个非负索引 k,其中 k ≤ 33,返回杨辉三角的第 k 行。

在杨辉三角中,每个数是它左上方和右上方的数的和。

示例:

输入: 3 输出: [1,3,3,1] 进阶:

你可以优化你的算法到 O(k) 空间复杂度吗?

var getRow = function(rowIndex) {
  const result = new Array(rowIndex + 1)
  result[0] = 1
  for (let i = 1; i < rowIndex + 1; i++) {
    result[0] = result[i] = 1
    for (let j = i - 1; j >= 1; j--) {
      result[j] = result[j] + result[j - 1]
    }
  }

  return result
};

解题思路: 循环时从右到左取上一次的数据