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))
template =
1 1 1
template =
1 2 1
|
4 | Pass |
%%
n = 3;
correct = [1 3 3 1];
assert(isequal(pascalTri(n),correct))
template =
1 1 1
template =
1 2 1
template =
1 1 1 1
template =
1 3 3 1
|
5 | Pass |
%%
n = 10;
correct = [1 10 45 120 210 252 210 120 45 10 1];
assert(isequal(pascalTri(n),correct))
template =
1 1 1
template =
1 2 1
template =
1 1 1 1
template =
1 3 3 1
template =
1 1 1 1 1
template =
1 4 6 4 1
template =
1 1 1 1 1 1
template =
1 5 10 10 5 1
template =
1 1 1 1 1 1 1
template =
1 6 15 20 15 6 1
template =
1 1 1 1 1 1 1 1
template =
1 7 21 35 35 21 7 1
template =
1 1 1 1 1 1 1 1 1
template =
1 8 28 56 70 56 28 8 1
template =
1 1 1 1 1 1 1 1 1 1
template =
1 9 36 84 126 126 84 36 9 1
template =
Columns 1 through 10
1 1 1 1 1 1 1 1 1 1
Column 11
1
template =
Columns 1 through 10
1 10 45 120 210 252 210 120 45 10
Column 11
1
|
6064 Solvers
1262 Solvers
698 Solvers
462 Solvers
Find out sum of all elements of given Matrix
349 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!