Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = {'hello', 'basic', 'test', 'case'};
y_correct = 'hello basic test case';
assert(isequal(cellstr_joiner(x, ' '),y_correct))
{Warning: Single input behavior is obsolete and will be
removed in a future release of MATLAB. Use C={X} instead.}
{> In mat2cell at 53
In cellstr_joiner at 4
In verifyCode>evaluateCode at 189
In verifyCode at 37
In fevalJSON at 14}
|
2 | Pass |
%%
x = {'this', 'one', '', 'has', ' ', 'some tricky', 'stuff'};
y_correct = 'this one has some tricky stuff';
assert(isequal(cellstr_joiner(x, ' '),y_correct))
{Warning: Single input behavior is obsolete and will be
removed in a future release of MATLAB. Use C={X} instead.}
{> In mat2cell at 53
In cellstr_joiner at 4
In verifyCode>evaluateCode at 189
In verifyCode at 37
In fevalJSON at 14}
|
3 | Pass |
%%
x = {'delimiters', 'are', 'not', 'always', 'spaces'};
y_correct = 'delimiters?are?not?always?spaces';
assert(isequal(cellstr_joiner(x, '?'),y_correct))
{Warning: Single input behavior is obsolete and will be
removed in a future release of MATLAB. Use C={X} instead.}
{> In mat2cell at 53
In cellstr_joiner at 4
In verifyCode>evaluateCode at 189
In verifyCode at 37
In fevalJSON at 14}
|
2980 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
329 Solvers
436 Solvers
2036 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!