Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = x;
assert(isequal(coolkids(x),y_correct))
|
2 | Pass |
%%
x = 2:4;
y_correct = x;
assert(isequal(coolkids(x),y_correct))
|
3 | Pass |
%%
x = 1:10;
y_correct = [2 3 5 7 1 4 6 8 9 10];
assert(isequal(coolkids(x),y_correct))
|
4 | Pass |
%%
x = 1:5;
y_correct = [2 3 5 1 4];
assert(isequal(coolkids(x),y_correct))
|
5 | Pass |
%%
x = [5 1 3 2 4];
y_correct = [2 3 5 1 4];
assert(isequal(coolkids(x),y_correct))
|
6 | Pass |
%%
x = [136 137];
y_correct = [137 136];
assert(isequal(coolkids(x),y_correct))
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13048 Solvers
151 Solvers
394 Solvers
Implement simple rotation cypher
943 Solvers
Find Index of maximum Value and maximum Value of a vector
144 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!