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));
|
272 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
224 Solvers
1160 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!