I need to learn more.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 0 1 0];
y_correct = 0;
assert(isequal(symmetry(x),y_correct))
a =
1×4 logical array
0 0 0 0
|
2 | Pass |
x = [1:10 10:-1:1];
y_correct = 1;
assert(isequal(symmetry(x),y_correct))
a =
1×4 logical array
1 1 1 1
|
3 | Pass |
x = [-1 0 0 1];
y_correct = 0;
assert(isequal(symmetry(x),y_correct))
a =
1×4 logical array
0 1 1 0
|
4 | Pass |
x = [5 4 4 5];
y_correct = 1;
assert(isequal(symmetry(x),y_correct))
a =
1×4 logical array
1 1 1 1
|
5 | Pass |
x = ones(1,10);
y_correct =1 ;
assert(isequal(symmetry(x),y_correct))
a =
1×4 logical array
1 1 1 1
|
6 | Pass |
x = ones(1,9);
y_correct = 1;
assert(isequal(symmetry(x),y_correct))
a =
1×4 logical array
1 1 1 1
|
7 | Pass |
x = [5 2 3 5 1 -1];
y_correct = 0;
assert(isequal(symmetry(x),y_correct))
a =
1×4 logical array
0 0 0 0
|
Back to basics 13 - Input variables
203 Solvers
Flip the main diagonal of a matrix
426 Solvers
243 Solvers
Deleting an element in a matrix
242 Solvers
709 Solvers