Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
v = [14 3 268 14 210 1 80];
w_correct = [1 14 14 210 268 3 80];
assert(isequal(soort(v),w_correct))
w =
1 14 14 210 268 3 80
|
2 | Pass |
v = [246 24680 2468 246 24 2 24680 24 2468 2];
w_correct = [2 2 24 24 246 246 2468 2468 24680 24680];
assert(isequal(soort(v),w_correct))
w =
2 2 24 24 246 246 2468 2468 24680 24680
|
3 | Pass |
v = ones(1,100)*randi(100);
w_correct = v;
assert(isequal(soort(v),w_correct))
w =
Columns 1 through 30
66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66
Columns 31 through 60
66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66
Columns 61 through 90
66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66
Columns 91 through 100
66 66 66 66 66 66 66 66 66 66
|
4 | Pass |
v = [];
w_correct = [];
assert(isequal(soort(v),w_correct))
w =
[]
|
Swap the first and last columns
12409 Solvers
1836 Solvers
Create a cell array out of a struct
508 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
320 Solvers
238 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!