Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = [1 2 1 15];
b = 1;
assert(isequal(most_change(a),b))
val =
0.2500 0.0500 0.1000 0.0100
row =
1
col =
4
valn =
0.2500 0.0500 0.1000 0.0100
chng =
0.2500 0.1000 0.1000 0.1500
maxchng =
0.6000
y =
0.6000
b =
1
|
2 | Pass |
%%
a = [ 1 2 1 15;
0 8 5 9];
b = 2;
assert(isequal(most_change(a),b))
val =
0.2500 0.0500 0.1000 0.0100
row =
2
col =
4
valn =
0.2500 0.0500 0.1000 0.0100
0.2500 0.0500 0.1000 0.0100
chng =
0.2500 0.1000 0.1000 0.1500
0 0.4000 0.5000 0.0900
maxchng =
0.6000
0.9900
y =
0.9900
b =
2
|
3 | Pass |
%%
a = [ 1 22 1 15;
12 3 13 7;
10 8 23 99];
b = 3;
assert(isequal(most_change(a),b))
val =
0.2500 0.0500 0.1000 0.0100
row =
3
col =
4
valn =
0.2500 0.0500 0.1000 0.0100
0.2500 0.0500 0.1000 0.0100
0.2500 0.0500 0.1000 0.0100
chng =
0.2500 1.1000 0.1000 0.1500
3.0000 0.1500 1.3000 0.0700
2.5000 0.4000 2.3000 0.9900
maxchng =
1.6000
4.5200
6.1900
y =
6.1900
b =
3
|
4 | Pass |
%%
a = [ 1 0 0 0; 0 0 0 24];
b = 1;
assert(isequal(most_change(a),b))
val =
0.2500 0.0500 0.1000 0.0100
row =
2
col =
4
valn =
0.2500 0.0500 0.1000 0.0100
0.2500 0.0500 0.1000 0.0100
chng =
0.2500 0 0 0
0 0 0 0.2400
maxchng =
0.2500
0.2400
y =
0.2500
b =
1
|
5 | Pass |
%%
a = [ 0 1 2 1; 0 2 1 1];
c = 1;
assert(isequal(most_change(a),c))
val =
0.2500 0.0500 0.1000 0.0100
row =
2
col =
4
valn =
0.2500 0.0500 0.1000 0.0100
0.2500 0.0500 0.1000 0.0100
chng =
0 0.0500 0.2000 0.0100
0 0.1000 0.1000 0.0100
maxchng =
0.2600
0.2100
y =
0.2600
b =
1
|
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.
val =
0.2500 0.0500 0.1000 0.0100
row =
2
col =
4
valn =
0.2500 0.0500 0.1000 0.0100
0.2500 0.0500 0.1000 0.0100
chng =
0 0.0500 0 0
0 0 0.1000 0
maxchng =
0.0500
0.1000
y =
0.1000
b =
2
|
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))
val =
0.2500 0.0500 0.1000 0.0100
row =
5
col =
4
valn =
0.2500 0.0500 0.1000 0.0100
0.2500 0.0500 0.1000 0.0100
0.2500 0.0500 0.1000 0.0100
0.2500 0.0500 0.1000 0.0100
0.2500 0.0500 0.1000 0.0100
chng =
0.5000 0.0500 0.1000 0.0100
0.2500 0.1000 0.1000 0.0100
0.2500 0.0500 0.2000 0.0100
0.2500 0.0500 0.1000 0.0200
1.0000 0 0 0
maxchng =
0.6600
0.4600
0.5100
0.4200
1.0000
y =
1
b =
5
|
Extract leading non-zero digit
1205 Solvers
Check to see if a Sudoku Puzzle is Solved
278 Solvers
Back to basics 23 - Triangular matrix
634 Solvers
Split a string into chunks of specified length
475 Solvers
439 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!