Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 0 1 0];
y_correct = 0;
assert(isequal(symmetry(x),y_correct))
y =
logical
0
ans =
[]
|
2 | Pass |
x = [1:10 10:-1:1];
y_correct = 1;
assert(isequal(symmetry(x),y_correct))
y =
logical
1
ans =
[]
|
3 | Pass |
x = [-1 0 0 1];
y_correct = 0;
assert(isequal(symmetry(x),y_correct))
y =
logical
0
ans =
[]
|
4 | Pass |
x = [5 4 4 5];
y_correct = 1;
assert(isequal(symmetry(x),y_correct))
y =
logical
1
ans =
[]
|
5 | Pass |
x = ones(1,10);
y_correct =1 ;
assert(isequal(symmetry(x),y_correct))
y =
logical
1
ans =
[]
|
6 | Pass |
x = ones(1,9);
y_correct = 1;
assert(isequal(symmetry(x),y_correct))
y =
logical
1
ans =
[]
|
7 | Pass |
x = [5 2 3 5 1 -1];
y_correct = 0;
assert(isequal(symmetry(x),y_correct))
y =
logical
0
ans =
[]
|
Find the two most distant points
1628 Solvers
Given a window, how many subsets of a vector sum positive
743 Solvers
MATCH THE STRINGS (2 CHAR) very easy
250 Solvers
Remove element(s) from cell array
373 Solvers
708 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!