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))
v =
1
0
6
c =
1
3
d =
2
h =
1
6
e =
0
w =
0
1
6
b =
0
1
6
v =
2
4
0
c =
1
2
d =
2
h =
2
4
e =
0
w =
0
2
4
b =
0 0
1 2
6 4
v =
3
5
0
c =
1
2
d =
2
h =
3
5
e =
0
w =
0
3
5
b =
0 0 0
1 2 3
6 4 5
|
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))
v =
1
0
5
0
7
0
6
c =
1
3
5
7
d =
4
h =
1
5
7
6
e =
0
0
0
w =
0
0
0
1
5
7
6
b =
0
0
0
1
5
7
6
|
3 | Pass |
a = [1 0; 1 1];
b_correct = [1 0; 1 1];
assert(isequal(bubbles(a),b_correct))
v =
1
1
c =
1
2
d =
2
h =
1
1
e =
0×1 empty double column vector
w =
1
1
b =
1
1
v =
0
1
c =
2
d =
1
h =
1
e =
0
w =
0
1
b =
1 0
1 1
|
4 | Pass |
a = [0 8 0 6 -2]';
b_correct = [0 0 8 6 -2]';
assert(isequal(bubbles(a),b_correct))
v =
0
8
0
6
-2
c =
2
4
5
d =
3
h =
8
6
-2
e =
0
0
w =
0
0
8
6
-2
b =
0
0
8
6
-2
|
17218 Solvers
829 Solvers
Vectorize the digits of an Integer
269 Solvers
Are all the three given point in the same line?
270 Solvers
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!