【leetcode】Python實現-119.楊輝三角形 II

119.楊輝三角形 II 描述:python 給定一個非負索引 k,其中 k ≤ 33,返回楊輝三角的第 k 行。web 示例:svg 輸入: 3 輸出: [1,3,3,1]spa 我code class Solution: def getRow(self, rowIndex): """ :type rowIndex: int :rtype: List[int] """
相關文章
相關標籤/搜索