Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 3 4];
y_correct = [4 3 2 1];
assert(isequal(rot(x),y_correct))
|
2 | Pass |
%%
x = [5 6 7 8];
y_correct = [8 7 6 5];
assert(isequal(rot(x),y_correct))
|
Make one big string out of two smaller strings
1148 Solvers
321 Solvers
What is Sum Of all elements of Matrix
292 Solvers
Replace every 3rd element in a vector with 4
170 Solvers
151 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!