Pascal's Triangle II
Given an index k, return the kth row of the Pascal's triangle.
For example, given k = 3,
Return
Return
[1,3,3,1]
.
Note:
Could you optimize your algorithm to use only O(k) extra space?
Could you optimize your algorithm to use only O(k) extra space?
Solution:
This one is easy. If we modify the previous array instead of creating a new array, we only need O(k) extra space.
The following code passes the LeetCode Online Large Judge.
Comments
Post a Comment