09-08 leetcode-0118
题目
Given an integer numRows, return the first numRows of Pascal’s triangle.
题解
某种意义上算一个最开始的 DP ?我猜(
1 | class Solution: |
Comments
Given an integer numRows, return the first numRows of Pascal’s triangle.
某种意义上算一个最开始的 DP ?我猜(
1 | class Solution: |