Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = {'foo','bar',5,10, {'carrr','starr',{'rita','fereira'}}};
q = ['{''foo'', ''bar'', 5, 10, {''carrr'', ''starr'', '...
'{''rita'', ''fereira''}}};']
assert(isequal(cell2str(x),q))
clear x, q
x = {1,2,3,4};
q = '{1, 2, 3, 4};';
assert(isequal(cell2str(x),q))
clear x,q
x = {{'MLB',{'Red Sox','Yankees'},{'Rangers','Cardinals'}},{'NFL',{'Cowboys','Giants'},{'Patriots','49ers','Ravens'}}};
q = '{{''MLB'', {''Red Sox'', ''Yankees''}, {''Rangers'', ''Cardinals''}}, {''NFL'', {''Cowboys'', ''Giants''}, {''Patriots'', ''49ers'', ''Ravens''}}};';
assert(isequal(cell2str(x),q))
q =
'{'foo', 'bar', 5, 10, {'carrr', 'starr', {'rita', 'fereira'}}};'
|
115 Solvers
Reverse the Words (not letters) of a String
297 Solvers
501 Solvers
Back to basics 23 - Triangular matrix
634 Solvers
4998 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!