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))
ans =
3×3 logical array
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))
ans =
4×4 logical array
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
ans =
logical
1
|
4 | Pass |
n=2;
y=[1 1;1 1]
assert(isequal(X(n),y))
y =
1 1
1 1
ans =
2×2 logical array
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))
ans =
5×5 logical array
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
|
Return the largest number that is adjacent to a zero
3751 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Celsius to Fahrenheit converter
389 Solvers
Natural numbers in string form
347 Solvers
616 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!