Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 7;
y_correct = [3 1 0 0 0 0 0;
1 2 1 0 0 0 0;
0 1 1 1 0 0 0;
0 0 1 0 1 0 0;
0 0 0 1 1 1 0;
0 0 0 0 1 2 1;
0 0 0 0 0 1 3];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Fail |
x = 5;
y_correct =[2 1 0 0 0;
1 1 1 0 0;
0 1 0 1 0;
0 0 1 1 1;
0 0 0 1 2];
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Fail |
x = 11;
y_correct =[5 1 0 0 0 0 0 0 0 0 0;
1 4 1 0 0 0 0 0 0 0 0;
0 1 3 1 0 0 0 0 0 0 0;
0 0 1 2 1 0 0 0 0 0 0;
0 0 0 1 1 1 0 0 0 0 0;
0 0 0 0 1 0 1 0 0 0 0;
0 0 0 0 0 1 1 1 0 0 0;
0 0 0 0 0 0 1 2 1 0 0;
0 0 0 0 0 0 0 1 3 1 0;
0 0 0 0 0 0 0 0 1 4 1;
0 0 0 0 0 0 0 0 0 1 5];
assert(isequal(your_fcn_name(x),y_correct));
|
4 | Fail |
x = 5;
y_correct =[2 1 0 0 0;
1 1 1 0 0;
0 1 0 1 0;
0 0 1 1 1;
0 0 0 1 2];
assert(isequal(your_fcn_name(x),y_correct));
|
1223 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
Matrix indexing with two vectors of indices
485 Solvers
620 Solvers
327 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!