This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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))
ans =
[]
|
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))
ans =
[]
|
3 | Pass |
v = ones(1,100)*randi(100);
w_correct = v;
assert(isequal(soort(v),w_correct))
ans =
[]
|
4 | Pass |
v = [];
w_correct = [];
assert(isequal(soort(v),w_correct))
ans =
[]
|
Numbers with prime factors 2, 3 and 5.
113 Solvers
100 Solvers
Area of an equilateral triangle
1704 Solvers
1322 Solvers
32 Solvers