Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x={'01', '56'; '234', '789'};
y_correct = '0123456789';
assert(isequal(your_fcn_name(x),y_correct));
J =
1×1 cell array
{'0123456789'}
y =
'0123456789'
|
2 | Pass |
x={'' 'a' '1'; 'AA' 'BB' 'CC'; 'dog' 'cat' 'car'};
y_correct='AAdogaBBcat1CCcar';
assert(isequal(your_fcn_name(x),y_correct));
J =
1×1 cell array
{'AAdogaBBcat1CCcar'}
y =
'AAdogaBBcat1CCcar'
|
3 | Pass |
x={'We' 'do' ;'ll ' 'ne.'};
y_correct='Well done.';
assert(isequal(your_fcn_name(x),y_correct));
J =
1×1 cell array
{'Well done.'}
y =
'Well done.'
|
All your base are belong to us
463 Solvers
351 Solvers
401 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
2334 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!