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))
y =
1 0 1
0 2 0
1 0 1
y =
1 0 1
0 1 0
1 0 1
|
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))
y =
1 0 0 1
0 1 1 0
0 1 1 0
1 0 0 1
y =
1 0 0 1
0 1 1 0
0 1 1 0
1 0 0 1
|
3 | Pass |
n=1;
y=[1]
assert(isequal(X(n),y))
y =
1
y =
2
y =
1
|
4 | Pass |
n=2;
y=[1 1;1 1]
assert(isequal(X(n),y))
y =
1 1
1 1
y =
1 1
1 1
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))
y =
1 0 0 0 1
0 1 0 1 0
0 0 2 0 0
0 1 0 1 0
1 0 0 0 1
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
|
The Goldbach Conjecture, Part 2
1286 Solvers
1763 Solvers
Piecewise linear interpolation
299 Solvers
Number of Even Elements in Fibonacci Sequence
665 Solvers
137 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!