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
idx =
1 2 3 4 5
idx =
2 3 4 1 5
|
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))
idx =
1 5 2 3 4 6
idx =
3 1 4 5 2 6
|
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))
idx =
4 2 8 1 7 3 6 5 9
idx =
5 2 6 8 1 3 4 7 9
|
4 | Pass |
x = [1 0 1 1 0 0];
y_correct0 = [0 1 0 1] ;
assert(isequal(popularity_bis(x),y_correct0))
idx =
2 4 1 3
idx =
2 4 1 3
|
5 | Pass |
x = [0 1 0 0 1 1];
y_correct1 = [0 1 0 1] ;
assert(isequal(popularity_bis(x),y_correct1))
idx =
1 3 2 4
idx =
2 4 1 3
|
Set some matrix elements to zero
290 Solvers
253 Solvers
Implement a bubble sort technique and output the number of swaps required
153 Solvers
260 Solvers
Relative ratio of "1" in binary number
392 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!