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))
ans =
4 3 2 1
|
2 | Pass |
x = [5 6 7 8];
y_correct = [8 7 6 5];
assert(isequal(rot(x),y_correct))
ans =
8 7 6 5
|
2515 Solvers
Returning a "greater than" vector
149 Solvers
295 Solvers
Create sequnce 1 4 9 16 25.........
148 Solvers
Write a code that will follow the equation y = x * (x + x) * x.
139 Solvers