Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
Lee = [32 8 4 64 16 2];
baby= 2;
dad = 64;
family(1) = baby; family(2) = dad;
assert(isequal(BabyDad(Lee),family));
|
2 | Pass |
%%
Jackson= [6, 10, 16, 28];
baby= 2;
dad = 1680;
family(1) = baby; family(2) = dad;
assert(isequal(BabyDad(Jackson),family));
|
3 | Pass |
%%
Smith= [3 17 15 60 2 ];
baby= 1;
dad = 1020;
family(1) = baby; family(2) = dad;
assert(isequal(BabyDad(Smith),family));
|
4 | Pass |
%%
Pitts= [10 6 12 20 ];
baby= 2;
dad = 60;
family(1) = baby; family(2) = dad;
assert(isequal(BabyDad(Pitts),family));
|
951 Solvers
895 Solvers
338 Solvers
216 Solvers
511 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!