Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 0;
correct = [1];
assert(isequal(pascalTri(n),correct))
|
2 | Pass |
%%
n = 1;
correct = [1 1];
assert(isequal(pascalTri(n),correct))
|
3 | Pass |
%%
n = 2;
correct = [1 2 1];
assert(isequal(pascalTri(n),correct))
|
4 | Pass |
%%
n = 3;
correct = [1 3 3 1];
assert(isequal(pascalTri(n),correct))
|
5 | Pass |
%%
n = 10;
correct = [1 10 45 120 210 252 210 120 45 10 1];
assert(isequal(pascalTri(n),correct))
|
27986 Solvers
831 Solvers
Remove the polynomials that have positive real elements of their roots.
629 Solvers
Solve the set of simultaneous linear equations
273 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!