Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 2 2 3 3 7 7 93]
y_correct1 = [2 3 7 1 93] ;
assert(isequal(popularity_bis(x),y_correct1))
x =
1 2 2 2 3 3 7 7 93
|
2 | Pass |
x = [1 1 2 2 2 3 3 7 7 1 93];
y_correct2 = [2 1 3 7 1 93] ;
assert(isequal(popularity_bis(x),y_correct2))
|
3 | Pass |
x = [1 0 0 2 2 -5 9 9 2 1 1 1 0 11];
y_correct1 = [1 0 2 9 -5 0 1 2 11] ;
assert(isequal(popularity_bis(x),y_correct1))
|
4 | Pass |
x = [1 0 1 1 0 0];
y_correct0 = [0 1 0 1] ;
assert(isequal(popularity_bis(x),y_correct0))
|
5 | Pass |
x = [0 1 0 0 1 1];
y_correct1 = [0 1 0 1] ;
assert(isequal(popularity_bis(x),y_correct1))
|
Find the sum of all the numbers of the input vector
31958 Solvers
Replace multiples of 5 with NaN
358 Solvers
Implement a bubble sort technique and output the number of swaps required
153 Solvers
Decimation - Optimized for speed
89 Solvers
249 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!