Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 2 2 3 3 7 7 93]
y_correct = [2 3 7 1 93];
assert(isequal(popularity(x),y_correct))
x =
1 2 2 2 3 3 7 7 93
v =
3 2 2 1 1
I =
2 3 4 1 5
|
2 | Pass |
%%
x = [-1 19 20 -1 -1 87 19 34 19 -1 21 87 20 10 20 34 19 -1];
y_correct = [-1 19 20 34 87 10 21];
assert(isequal(popularity(x),y_correct))
v =
5 4 3 2 2 1 1
I =
1 3 4 6 7 2 5
|
350 Solvers
Implement simple rotation cypher
805 Solvers
308 Solvers
203 Solvers
Flip the vector from right to left
735 Solvers