Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = x;
assert(isequal(coolkids(x),y_correct))
n =
logical
0
ans =
1
|
2 | Pass |
x = 2:4;
y_correct = x;
assert(isequal(coolkids(x),y_correct))
n =
1×3 logical array
1 1 0
ans =
2 3 4
|
3 | Pass |
x = 1:10;
y_correct = [2 3 5 7 1 4 6 8 9 10];
assert(isequal(coolkids(x),y_correct))
n =
1×10 logical array
0 1 1 0 1 0 1 0 0 0
ans =
2 3 5 7 1 4 6 8 9 10
|
4 | Pass |
x = 1:5;
y_correct = [2 3 5 1 4];
assert(isequal(coolkids(x),y_correct))
n =
1×5 logical array
0 1 1 0 1
ans =
2 3 5 1 4
|
5 | Pass |
x = [5 1 3 2 4];
y_correct = [2 3 5 1 4];
assert(isequal(coolkids(x),y_correct))
n =
1×5 logical array
1 0 1 1 0
ans =
2 3 5 1 4
|
6 | Pass |
x = [136 137];
y_correct = [137 136];
assert(isequal(coolkids(x),y_correct))
n =
1×2 logical array
0 1
ans =
137 136
|
Find the alphabetic word product
2321 Solvers
Return elements unique to either input
550 Solvers
147 Solvers
227 Solvers
Returning a "greater than" vector
188 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!