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
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In bullseye2 (line 2)
In ScoringEngineTestPoint1 (line 5)
In solutionTest (line 3)]
|
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
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In bullseye2 (line 2)
In ScoringEngineTestPoint2 (line 7)
In solutionTest (line 5)]
|
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));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In bullseye2 (line 2)
In ScoringEngineTestPoint3 (line 9)
In solutionTest (line 7)]
|
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));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In bullseye2 (line 2)
In ScoringEngineTestPoint4 (line 11)
In solutionTest (line 9)]
|
129 Solvers
232 Solvers
Construct an index vector from two input vectors in vectorized fashion
125 Solvers
138 Solvers
412 Solvers