Solution
def generate(self, numRows):
"""
:type numRows: int
:rtype: List[List[int]]
"""
if numRows == 0:
return []
res = [[1]]
for i in range(2, numRows+1):
row = [1] * i
for j in range(1, i-1):
row[j] = res[-1][j-1] + res[-1][j]
res.append(row)
return res
PREVIOUSNumber of 1 Bits
NEXTCount and Say