Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [ 1 2 3
0 4 5
6 0 0 ];
b_correct = [ 0 0 0
1 2 3
6 4 5 ];
assert(isequal(bubbles(a),b_correct))
r =
1
3
1
2
1
2
c =
1
1
2
2
3
3
k2 =
0
|
2 | Pass |
a = [ 1 0 5 0 7 0 6 ]';
b_correct = [ 0 0 0 1 5 7 6 ]';
assert(isequal(bubbles(a),b_correct))
r =
1
3
5
7
c =
1
1
1
1
k2 =
0
|
3 | Pass |
a = [1 0; 1 1];
b_correct = [1 0; 1 1];
assert(isequal(bubbles(a),b_correct))
r =
1
2
2
c =
1
1
2
k2 =
0
|
4 | Pass |
a = [0 8 0 6 -2]';
b_correct = [0 0 8 6 -2]';
assert(isequal(bubbles(a),b_correct))
r =
2
4
5
c =
1
1
1
k2 =
0
|
27983 Solvers
1600 Solvers
316 Solvers
309 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!