/*
Author: Andy, [email protected]
Date: Apr 16, 2013
Problem: Pascal's Triangle
Difficulty: Easy
Source: http://leetcode.com/onlinejudge#question_118
Notes:
Given numRows, generate the first numRows of Pascal's triangle.
For example, given numRows = 5,
Return
[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,1]
]
Solution: .....
*/
public class Solution {
public List> generate(int numRows) {
List
> res = new ArrayList
>();
if (numRows < 1) return res;
List