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
ans =
27 16 39
|
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
ans =
10 20 30
|
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
ans =
18 25 29 23
|
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
ans =
21 22 23 24
|
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
ans =
15 20 25 30
|
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
ans =
25 20 30 15 40
|
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
ans =
5 7 11 21 14
|
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
ans =
21 5 13 42 33 19 72
|
Find the two most distant points
1628 Solvers
651 Solvers
Return the first and last character of a string
3457 Solvers
170 Solvers
549 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!