Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [0.8 0.8 0.8 0.3 0.3 0.4 0.5 0.6 0.6 0.9];
y_correct = [1 1 1 2 2 3 4 5 5 6];
assert(isequal(GroupSort(x),y_correct))
|
2 | Pass |
%%
x = [2 2 2 5 5 1 1 9 9 8 6 3 3];
y_correct = [1 1 1 2 2 3 3 4 4 5 6 7 7];
assert(isequal(GroupSort(x),y_correct))
|
3 | Pass |
%%
x = [1 2 3];
y_correct = [1 2 3];
assert(isequal(GroupSort(x),y_correct))
|
1882 Solvers
Test if two numbers have the same digits
187 Solvers
483 Solvers
Matrix multiplication across rows
176 Solvers
Sum the 'edge' values of a matrix
232 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!