This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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
y =
2
y =
2 3
y =
2 3 7
y =
2 3 7 1
y =
2 3 7 1 93
|
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))
y =
-1
y =
-1 19
y =
-1 19 20
y =
-1 19 20 34
y =
-1 19 20 34 87
y =
-1 19 20 34 87 10
y =
-1 19 20 34 87 10 21
|
1166 Solvers
797 Solvers
525 Solvers
Celsius to Fahrenheit converter
280 Solvers
287 Solvers