This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n=3;
y=[1 0 1
0 1 0
1 0 1];
assert(isequal(X(n),y))
|
2 | Pass |
n=4;
y=[1 0 0 1
0 1 1 0
0 1 1 0
1 0 0 1];
assert(isequal(X(n),y))
|
3 | Pass |
n=1;
y=[1]
assert(isequal(X(n),y))
y =
1
|
4 | Pass |
n=2;
y=[1 1;1 1]
assert(isequal(X(n),y))
y =
1 1
1 1
|
5 | Pass |
n=5;
y=[1 0 0 0 1
0 1 0 1 0
0 0 1 0 0
0 1 0 1 0
1 0 0 0 1];
assert(isequal(X(n),y))
|
4597 Solvers
347 Solvers
309 Solvers
404 Solvers
261 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!