Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
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 | Pass |
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 | Pass |
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 | Pass |
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));
|
Determine whether a vector is monotonically increasing
9269 Solvers
339 Solvers
272 Solvers
Test if two numbers have the same digits
155 Solvers
Side of an equilateral triangle
1521 Solvers