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
Show
2 older comments
@bmtran (Bryant Tran)
on 26 Jan 2012
the last assertion is wrong
Jim Hokanson
on 26 Jan 2012
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
Ned Gulley
on 26 Jan 2012
I've removed the last assertion and rescored. Thanks for the note.
Austin Evans
on 26 Nov 2018
fun!
Darshan Vijayaraghavan
on 25 Jun 2020
Fun!!
Solution Comments
Show commentsProblem Recent Solvers4357
Suggested Problems
-
Replace NaNs with the number that appears to its left in the row.
3014 Solvers
-
260 Solvers
-
Back to basics 17 - white space
272 Solvers
-
5359 Solvers
-
739 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!