This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 5;
a = [1 0 1 0 1;
0 1 0 1 0;
1 0 1 0 1;
0 1 0 1 0;
1 0 1 0 1];
assert(isequal(a,checkerboard(n)))
a =
1 0 1 0 1
0 1 0 1 0
1 0 1 0 1
0 1 0 1 0
1 0 1 0 1
|
2 | Pass |
%%
n = 4;
a = [1 0 1 0;
0 1 0 1;
1 0 1 0;
0 1 0 1];
assert(isequal(a,checkerboard(n)))
a =
1 0 1 0
0 1 0 1
1 0 1 0
0 1 0 1
|
6063 Solvers
Find the alphabetic word product
2321 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
277 Solvers
725 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!