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 =
1 1
|
3 | Pass |
n = 2;
correct = [1 2 1];
assert(isequal(pascalTri(n),correct))
y =
1
y =
1 2
y =
1 2 1
|
4 | Pass |
n = 3;
correct = [1 3 3 1];
assert(isequal(pascalTri(n),correct))
y =
1
y =
1 3
y =
1 3 3
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
y =
1 10
y =
1 10 45
y =
1 10 45 120
y =
1 10 45 120 210
y =
1 10 45 120 210 252
y =
1 10 45 120 210 252 210
y =
1 10 45 120 210 252 210 120
y =
1 10 45 120 210 252 210 120 45
y =
1 10 45 120 210 252 210 120 45 10
y =
1 10 45 120 210 252 210 120 45 10 1
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Make one big string out of two smaller strings
1148 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
Make a random, non-repeating vector.
2795 Solvers
Check that number is whole number
1070 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!