Pascal's Triangle Given a non-negative integer n, print the first n rows of pascal's triangle. Pascal's triangle is a triangle in which each cell is the sum of the 2 cells above it. Example generate(4) // should print: // [ [1], // [1,1], // [1,2,1], // [1,3,3,1] ]