Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [1 2 1 15];
b = 1;
assert(isequal(most_change(a),b))
b =
0
w =
0
c =
0.6000
b =
1
w =
0.6000
|
2 | Pass |
a = [ 1 2 1 15;
0 8 5 9];
b = 2;
assert(isequal(most_change(a),b))
b =
0
w =
0
c =
0.6000
b =
1
w =
0.6000
c =
0.9900
b =
2
w =
0.9900
|
3 | Pass |
a = [ 1 22 1 15;
12 3 13 7;
10 8 23 99];
b = 3;
assert(isequal(most_change(a),b))
b =
0
w =
0
c =
1.6000
b =
1
w =
1.6000
c =
4.5200
b =
2
w =
4.5200
c =
6.1900
b =
3
w =
6.1900
|
4 | Pass |
a = [ 1 0 0 0; 0 0 0 24];
b = 1;
assert(isequal(most_change(a),b))
b =
0
w =
0
c =
0.2500
b =
1
w =
0.2500
c =
0.2400
|
5 | Pass |
a = [ 0 1 2 1; 0 2 1 1];
c = 1;
assert(isequal(most_change(a),c))
b =
0
w =
0
c =
0.2600
b =
1
w =
0.2600
c =
0.2100
|
6 | Pass |
% There is a lot of confusion about this problem. Watch this.
a = [0 1 0 0; 0 0 1 0];
c = 2;
assert(isequal(most_change(a),c))
% Now go back and read the problem description carefully.
b =
0
w =
0
c =
0.0500
b =
1
w =
0.0500
c =
0.1000
b =
2
w =
0.1000
|
7 | Pass |
a = [ 2 1 1 1;
1 2 1 1;
1 1 2 1;
1 1 1 2;
4 0 0 0];
c = 5;
assert(isequal(most_change(a),c))
b =
0
w =
0
c =
0.6600
b =
1
w =
0.6600
c =
0.4600
c =
0.5100
c =
0.4200
c =
1
b =
5
w =
1
|
1901 Solvers
348 Solvers
Compute a dot product of two vectors x and y
750 Solvers
283 Solvers
Find the sides of an isosceles triangle when given its area and height from its base to apex
449 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!