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));
|
Is my wife right? Now with even more wrong husband
1145 Solvers
116 Solvers
Project Euler: Problem 10, Sum of Primes
555 Solvers
Make a random, non-repeating vector.
1119 Solvers
Create a matrix X, where each column is a shifted copy of the vector v
116 Solvers