Question: Haskell Question Make a function that returns Pascal's Triangle up to line n. Use your choose function from part 3. List comprehensions may be useful
Haskell Question
Make a function that returns Pascal's Triangle up to line n. Use your choose function from part 3. List comprehensions may be useful here. Example output:
> pTri 4
[[1],[1,1],[1,2,1],[1,3,3,1],[1,4,6,4,1]]
Thanks
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
