leetcode-118. 楊輝三角 運行時間超越提交的100%

一、題目要求 給定一個非負整數 numRows,生成楊輝三角的前 numRows 行。 在楊輝三角中,每個數是它左上方和右上方的數的和。 二、代碼及思路(註釋是運行代碼後) class Solution(object):     def generate(self, numRows):         """         :type numRows: int         :rtype: L
相關文章
相關標籤/搜索