Given numRows, generate the first numRows of Pascal’s triangle.
Pascal’s triangle : To generate A[C] in row R, sum up A’[C] and A’[C-1] from previous row R - 1.
Example:
Given numRows = 5,
Return
[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,1]
]
Blogs to read:
1. http://cenalulu.github.io/linux/all-about-cpu-cache/
2. http://cenalulu.github.io/mysql/how-i-become-a-facebook-dba/
3. http://cenalulu.github.io/python/online-programming-test/
4. http://cenalulu.github.io/python/euler-project-experience/
No comments:
Post a Comment