Monday, July 25, 2016

Pascal's triangle - facebook code lab

July 25, 2016

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]
]
Plan to work on the problem.

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