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
y =
0 0
|
3 | Pass |
n = 2;
correct = [1 2 1];
assert(isequal(pascalTri(n),correct))
y =
1
y =
0 0
y =
0 0 0
|
4 | Pass |
n = 3;
correct = [1 3 3 1];
assert(isequal(pascalTri(n),correct))
y =
1
y =
0 0
y =
0 0 0
y =
0 0 0 0
|
5 | Pass |
n = 10;
correct = [1 10 45 120 210 252 210 120 45 10 1];
assert(isequal(pascalTri(n),correct))
y =
1
y =
0 0
y =
0 0 0
y =
0 0 0 0
y =
0 0 0 0 0
y =
0 0 0 0 0 0
y =
0 0 0 0 0 0 0
y =
0 0 0 0 0 0 0 0
y =
0 0 0 0 0 0 0 0 0
y =
0 0 0 0 0 0 0 0 0 0
y =
0 0 0 0 0 0 0 0 0 0 0
|
272 Solvers
Find the maximum number of decimal places in a set of numbers
735 Solvers
Split a string into chunks of specified length
475 Solvers
531 Solvers
4999 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!