Pascal's Triangle II描述分析代码相关题目Pascal's Triangle II描述Given an index k, return the k-th row of the Pascal's triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your algorithm to use only O(k) extra space? 分析滚动数组。 代码相关题目 Pascal's Triangle 原文: https://soulmachine.gitbooks.io/algorithm-essentials/content/cpp/simulation/pascal-s-triangle-ii.html