Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(bullseye(x),y_correct))
b =
1
A =
[]
a =
1
|
2 | Pass |
x = 3;
y_correct = [3 2 3; 2 1 2; 3 2 3];
assert(isequal(bullseye(x),y_correct))
b =
2 1 2
A =
[]
A =
3 2 3
a =
3 2 3
2 1 2
3 2 3
|
3 | Fail |
x = 5;
y_correct = [5 4 3 4 5; 4 3 2 3 4; 3 2 1 2 3; 4 3 2 3 4; 5 4 3 4 5];
assert(isequal(bullseye(x),y_correct))
b =
3 2 1 2 3
A =
[]
A =
4 3 2 3 4
A =
4 3 2 3 4
4 3 2 3 4
a =
4 3 2 3 4
4 3 2 3 4
3 2 1 2 3
4 3 2 3 4
4 3 2 3 4
|
The Goldbach Conjecture, Part 2
961 Solvers
272 Solvers
Sum the entries of each column of a matrix which satisfy a logical condition.
111 Solvers
Magic is simple (for beginners)
1110 Solvers
07 - Common functions and indexing 6
281 Solvers