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 |
x = [5 1 4 2 8];
y_correct = 4;
assert(isequal(bubblesort(x),y_correct))
c =
4
ans =
[]
|
2 | Pass |
x = [7 9 17 4 19 3 17 13 20 18];
y_correct = 14;
assert(isequal(bubblesort(x),y_correct))
c =
14
ans =
[]
|
3 | Pass |
x = [73 72 27 56 16 12 21 12 19 1 9 52 44];
y_correct = 54;
assert(isequal(bubblesort(x),y_correct))
c =
54
ans =
[]
|
4 | Pass |
x = [4 15 2 5 1 5 8 6 12 13 22 7];
y_correct = 18;
assert(isequal(bubblesort(x),y_correct))
c =
18
ans =
[]
|
5 | Pass |
x = [48 15 16 86 89 29 56 2 59 57 2 6 27 53 91 29 52 32 4 61 67 18 99 12 37 76 71 85 91 9];
y_correct = 180;
assert(isequal(bubblesort(x),y_correct))
c =
180
ans =
[]
|
It dseon't mettar waht oedrr the lrettes in a wrod are.
652 Solvers
594 Solvers
6364 Solvers
169 Solvers
Solve a System of Linear Equations
3448 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!