Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x={'01', '56'; '234', '789'};
y_correct = '0123456789';
assert(isequal(your_fcn_name(x),y_correct));
|
2 | Pass |
x={'' 'a' '1'; 'AA' 'BB' 'CC'; 'dog' 'cat' 'car'};
y_correct='AAdogaBBcat1CCcar';
assert(isequal(your_fcn_name(x),y_correct));
|
3 | Pass |
x={'We' 'do' ;'ll ' 'ne.'};
y_correct='Well done.';
assert(isequal(your_fcn_name(x),y_correct));
y =
'Well done.'
|
1900 Solvers
208 Solvers
250 Solvers
462 Solvers
Rounding off numbers to n decimals
1050 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!