This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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));
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!