Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
AB = 43;
AC = 66;
BC = 55;
y = combined_ages2(AB,AC,BC);
y_correct = [27 16 39];
for i = 1:numel(y_correct)
assert(isequal(y(i),y_correct(i)))
end
n =
3
A =
0 0 0
0 0 0
0 0 0
A =
1 1 0
0 0 0
0 0 0
A =
1 1 0
1 0 1
0 0 0
A =
1 1 0
1 0 1
0 1 1
b =
43
66
55
|
2 | Pass |
AB = 30;
AC = 40;
BC = 50;
y = combined_ages2(AB,AC,BC);
y_correct = [10 20 30];
for i = 1:numel(y_correct)
assert(isequal(y(i),y_correct(i)))
end
n =
3
A =
0 0 0
0 0 0
0 0 0
A =
1 1 0
0 0 0
0 0 0
A =
1 1 0
1 0 1
0 0 0
A =
1 1 0
1 0 1
0 1 1
b =
30
40
50
|
3 | Pass |
ABC = 72;
ABD = 66;
ACD = 70;
BCD = 77;
y = combined_ages2(ABC,ABD,ACD,BCD);
y_correct = [18 25 29 23];
for i = 1:numel(y_correct)
assert(isequal(y(i),y_correct(i)))
end
n =
4
A =
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
A =
1 1 1 0
0 0 0 0
0 0 0 0
0 0 0 0
A =
1 1 1 0
1 1 0 1
0 0 0 0
0 0 0 0
A =
1 1 1 0
1 1 0 1
1 0 1 1
0 0 0 0
A =
1 1 1 0
1 1 0 1
1 0 1 1
0 1 1 1
b =
72
66
70
77
|
4 | Pass |
ABC = 66;
ABD = 67;
ACD = 68;
BCD = 69;
y = combined_ages2(ABC,ABD,ACD,BCD);
y_correct = [21 22 23 24];
for i = 1:numel(y_correct)
assert(isequal(y(i),y_correct(i)))
end
n =
4
A =
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
A =
1 1 1 0
0 0 0 0
0 0 0 0
0 0 0 0
A =
1 1 1 0
1 1 0 1
0 0 0 0
0 0 0 0
A =
1 1 1 0
1 1 0 1
1 0 1 1
0 0 0 0
A =
1 1 1 0
1 1 0 1
1 0 1 1
0 1 1 1
b =
66
67
68
69
|
5 | Pass |
ABC = 60;
ABD = 65;
ACD = 70;
BCD = 75;
y = combined_ages2(ABC,ABD,ACD,BCD);
y_correct = [15 20 25 30];
for i = 1:numel(y_correct)
assert(isequal(y(i),y_correct(i)))
end
n =
4
A =
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
A =
1 1 1 0
0 0 0 0
0 0 0 0
0 0 0 0
A =
1 1 1 0
1 1 0 1
0 0 0 0
0 0 0 0
A =
1 1 1 0
1 1 0 1
1 0 1 1
0 0 0 0
A =
1 1 1 0
1 1 0 1
1 0 1 1
0 1 1 1
b =
60
65
70
75
|
6 | Pass |
ABCD = 90;
ABCE = 115;
ABDE = 100;
ACDE = 110;
BCDE = 105;
y = combined_ages2(ABCD,ABCE,ABDE,ACDE,BCDE);
y_correct = [25 20 30 15 40];
for i = 1:numel(y_correct)
assert(isequal(y(i),y_correct(i)))
end
n =
5
A =
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
A =
1 1 1 1 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
A =
1 1 1 1 0
1 1 1 0 1
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
A =
1 1 1 1 0
1 1 1 0 1
1 1 0 1 1
0 0 0 0 0
0 0 0 0 0
A =
1 1 1 1 0
1 1 1 0 1
1 1 0 1 1
1 0 1 1 1
0 0 0 0 0
A =
1 1 1 1 0
1 1 1 0 1
1 1 0 1 1
1 0 1 1 1
0 1 1 1 1
b =
90
115
100
110
105
|
7 | Pass |
ABCD = 44;
ABCE = 37;
ABDE = 47;
ACDE = 51;
BCDE = 53;
y = combined_ages2(ABCD,ABCE,ABDE,ACDE,BCDE);
y_correct = [5 7 11 21 14];
for i = 1:numel(y_correct)
assert(isequal(y(i),y_correct(i)))
end
n =
5
A =
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
A =
1 1 1 1 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
A =
1 1 1 1 0
1 1 1 0 1
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
A =
1 1 1 1 0
1 1 1 0 1
1 1 0 1 1
0 0 0 0 0
0 0 0 0 0
A =
1 1 1 1 0
1 1 1 0 1
1 1 0 1 1
1 0 1 1 1
0 0 0 0 0
A =
1 1 1 1 0
1 1 1 0 1
1 1 0 1 1
1 0 1 1 1
0 1 1 1 1
b =
44
37
47
51
53
|
8 | Pass |
ABCDEF = 133;
ABCDEG = 186;
ABCDFG = 172;
ABCEFG = 163;
ABDEFG = 192;
ACDEFG = 200;
BCDEFG = 184;
y = combined_ages2(ABCDEF,ABCDEG,ABCDFG,ABCEFG,ABDEFG,ACDEFG,BCDEFG);
y_correct = [21 5 13 42 33 19 72];
for i = 1:numel(y_correct)
assert(isequal(y(i),y_correct(i)))
end
n =
7
A =
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
A =
1 1 1 1 1 1 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
A =
1 1 1 1 1 1 0
1 1 1 1 1 0 1
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
A =
1 1 1 1 1 1 0
1 1 1 1 1 0 1
1 1 1 1 0 1 1
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
A =
1 1 1 1 1 1 0
1 1 1 1 1 0 1
1 1 1 1 0 1 1
1 1 1 0 1 1 1
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
A =
1 1 1 1 1 1 0
1 1 1 1 1 0 1
1 1 1 1 0 1 1
1 1 1 0 1 1 1
1 1 0 1 1 1 1
0 0 0 0 0 0 0
0 0 0 0 0 0 0
A =
1 1 1 1 1 1 0
1 1 1 1 1 0 1
1 1 1 1 0 1 1
1 1 1 0 1 1 1
1 1 0 1 1 1 1
1 0 1 1 1 1 1
0 0 0 0 0 0 0
A =
1 1 1 1 1 1 0
1 1 1 1 1 0 1
1 1 1 1 0 1 1
1 1 1 0 1 1 1
1 1 0 1 1 1 1
1 0 1 1 1 1 1
0 1 1 1 1 1 1
b =
133
186
172
163
192
200
184
|
9819 Solvers
900 Solvers
Find state names that start with the letter N
598 Solvers
337 Solvers
5460 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!