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))
|
14356 Solvers
500 Solvers
111 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
231 Solvers
123 Solvers