Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct = [1 1 1;0 1 0;1 1 1];
assert(isequal(Z(n),y_correct))
|
2 | Pass |
n = 4;
y_correct = [1 1 1 1;0 0 1 0; 0 1 0 0; 1 1 1 1];
assert(isequal(Z(n),y_correct))
|
3 | Pass |
n = 5;
y_correct = [1 1 1 1 1; 0 0 0 1 0; 0 0 1 0 0; 0 1 0 0 0; 1 1 1 1 1];
assert(isequal(Z(n),y_correct))
|
2183 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
1143 Solvers
151 Solvers
289 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!