Problem 37. Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of Pascal's Triangle.
Examples:
pascalTri(0)
ans =
1 pascalTri(1)
ans =
1 1 pascalTri(2)
ans =
1 2 1
Solution Stats
Problem Comments
-
5 Comments
the last assertion is wrong
Oops, I guess I commented in the solution, not the problem. (What's the difference????) They should check if their answer is symmetrical, which it isn't, so their solution must be wrong regardless of subsequent values
I've removed the last assertion and rescored. Thanks for the note.
fun!
Fun!!
Solution Comments
Show commentsProblem Recent Solvers4493
Suggested Problems
-
Project Euler: Problem 1, Multiples of 3 and 5
3661 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
554 Solvers
-
Number of 1s in a binary string
10954 Solvers
-
Side of an equilateral triangle
6863 Solvers
-
495 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!