Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 0 1 0];
y_correct = 0;
assert(isequal(symmetry(x),y_correct))
x2 =
0 1 0 1
|
2 | Pass |
x = [1:10 10:-1:1];
y_correct = 1;
assert(isequal(symmetry(x),y_correct))
x2 =
1 2 3 4 5 6 7 8 9 10 10 9 8 7 6 5 4 3 2 1
|
3 | Pass |
x = [-1 0 0 1];
y_correct = 0;
assert(isequal(symmetry(x),y_correct))
x2 =
1 0 0 -1
|
4 | Pass |
x = [5 4 4 5];
y_correct = 1;
assert(isequal(symmetry(x),y_correct))
x2 =
5 4 4 5
|
5 | Pass |
x = ones(1,10);
y_correct =1 ;
assert(isequal(symmetry(x),y_correct))
x2 =
1 1 1 1 1 1 1 1 1 1
|
6 | Pass |
x = ones(1,9);
y_correct = 1;
assert(isequal(symmetry(x),y_correct))
x2 =
1 1 1 1 1 1 1 1 1
|
7 | Pass |
x = [5 2 3 5 1 -1];
y_correct = 0;
assert(isequal(symmetry(x),y_correct))
x2 =
-1 1 5 3 2 5
|
"Low : High - Low : High - Turn around " -- Create a subindices vector
320 Solvers
Find last zero for each column
238 Solvers
241 Solvers
What is Sum Of all elements of Matrix
292 Solvers
360 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!