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
Solution Comments
Show comments
Loading...
Problem Recent Solvers4490
Suggested Problems
-
Is my wife right? Now with even more wrong husband
1340 Solvers
-
Flag largest magnitude swings as they occur
690 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
884 Solvers
-
Create an n-by-n null matrix and fill with ones certain positions
717 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
399 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!
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!!