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
f =
1 2 3
|
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))
f =
1 2 3
|
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))
f =
1 2 3
|
4 | Pass |
x = [1 0 1 1 0 0];
y_correct0 = [0 1 0 1] ;
assert(isequal(popularity_bis(x),y_correct0))
f =
1 2
|
5 | Pass |
x = [0 1 0 0 1 1];
y_correct1 = [0 1 0 1] ;
assert(isequal(popularity_bis(x),y_correct1))
f =
1 2
|
1836 Solvers
Find common elements in matrix rows
1232 Solvers
Remove the polynomials that have positive real elements of their roots.
629 Solvers
495 Solvers
Square Digits Number Chain Terminal Value (Inspired by Project Euler Problem 92)
168 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!