Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
a = [1 1 1;
1 0 1;
1 1 1;]
assert(isequal(bullseye2(n),a));
a =
1 1 1
1 0 1
1 1 1
|
2 | Pass |
n = 5;
a = [1 1 1 1 1;
1 0 0 0 1;
1 0 1 0 1;
1 0 0 0 1;
1 1 1 1 1;]
assert(isequal(bullseye2(n),a));
a =
1 1 1 1 1
1 0 0 0 1
1 0 1 0 1
1 0 0 0 1
1 1 1 1 1
|
3 | Pass |
n = 7;
a = [1 1 1 1 1 1 1;
1 0 0 0 0 0 1;
1 0 1 1 1 0 1;
1 0 1 0 1 0 1;
1 0 1 1 1 0 1;
1 0 0 0 0 0 1;
1 1 1 1 1 1 1];
assert(isequal(bullseye2(n),a));
|
4 | Pass |
n = 9;
a = [1 1 1 1 1 1 1 1 1;
1 0 0 0 0 0 0 0 1;
1 0 1 1 1 1 1 0 1;
1 0 1 0 0 0 1 0 1;
1 0 1 0 1 0 1 0 1;
1 0 1 0 0 0 1 0 1;
1 0 1 1 1 1 1 0 1;
1 0 0 0 0 0 0 0 1;
1 1 1 1 1 1 1 1 1];
assert(isequal(bullseye2(n),a));
|
739 Solvers
Flag largest magnitude swings as they occur
582 Solvers
Who has power to do everything in this world?
318 Solvers
271 Solvers
Matrix multiplication across rows
176 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!