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
a2 =
3 2 2 1 1
id =
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))
a2 =
3 2 2 2 1 1
id =
2 1 3 4 5 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))
a2 =
3 2 2 2 1 1 1 1 1
id =
7 2 3 5 1 4 6 8 9
|
4 | Pass |
x = [1 0 1 1 0 0];
y_correct0 = [0 1 0 1] ;
assert(isequal(popularity_bis(x),y_correct0))
a2 =
2 2 1 1
id =
3 4 1 2
|
5 | Pass |
x = [0 1 0 0 1 1];
y_correct1 = [0 1 0 1] ;
assert(isequal(popularity_bis(x),y_correct1))
a2 =
2 2 1 1
id =
3 4 1 2
|
27979 Solvers
251 Solvers
149 Solvers
Get the elements of diagonal and antidiagonal for any m-by-n matrix
267 Solvers
461 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!