119_Pascal's Triangle II
Last updated
Last updated
Given a non-negative index k
where k≤ 33
, return the kth
index row of the Pascal's triangle.
Note that the row index starts from 0.
Could you optimize your algorithm to use only extra space?
In Pascal's triangle, each number is the sum of the two numbers directly above it.
Idea:
Loop row by row, only save the row above and the current row
Time complexity:
Space complexity:
Another