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

9240 Solutions

4490 Solvers

Last Solution submitted on Mar 05, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...