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))
out_str =
''
l =
4
|
2 | Pass |
%%
x = {'this', 'one', '', 'has', ' ', 'some tricky', 'stuff'};
y_correct = 'this one has some tricky stuff';
assert(isequal(cellstr_joiner(x, ' '),y_correct))
out_str =
''
l =
7
|
3 | Pass |
%%
x = {'delimiters', 'are', 'not', 'always', 'spaces'};
y_correct = 'delimiters?are?not?always?spaces';
assert(isequal(cellstr_joiner(x, '?'),y_correct))
out_str =
''
l =
5
|
given 3 sides, find area of this triangle
680 Solvers
753 Solvers
Implement simple rotation cypher
942 Solvers
273 Solvers
277 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!