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
|
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))
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35563 Solvers
Determine whether a vector is monotonically increasing
11922 Solvers
Given two strings, find the maximum overlap
461 Solvers
525 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!