Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 0;
correct = [1];
assert(isequal(pascalTri(n),correct))
y =
1
|
2 | Pass |
n = 1;
correct = [1 1];
assert(isequal(pascalTri(n),correct))
y =
1 1
|
3 | Pass |
n = 2;
correct = [1 2 1];
assert(isequal(pascalTri(n),correct))
y =
1 2 1
|
4 | Pass |
n = 3;
correct = [1 3 3 1];
assert(isequal(pascalTri(n),correct))
y =
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))
y =
1 10 45 120 210 252 210 120 45 10 1
|
5832 Solvers
The Goldbach Conjecture, Part 2
1284 Solvers
Make one big string out of two smaller strings
1148 Solvers
Create an index-powered vector
352 Solvers
255 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!