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))
b =
hello basic
b =
hello basic test
b =
hello basic test case
|
2 | Pass |
%%
x = {'this', 'one', '', 'has', ' ', 'some tricky', 'stuff'};
y_correct = 'this one has some tricky stuff';
assert(isequal(cellstr_joiner(x, ' '),y_correct))
b =
this one
b =
this one
b =
this one has
b =
this one has
b =
this one has some tricky
b =
this one has some tricky stuff
|
3 | Pass |
%%
x = {'delimiters', 'are', 'not', 'always', 'spaces'};
y_correct = 'delimiters?are?not?always?spaces';
assert(isequal(cellstr_joiner(x, '?'),y_correct))
b =
delimiters?are
b =
delimiters?are?not
b =
delimiters?are?not?always
b =
delimiters?are?not?always?spaces
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35576 Solvers
Renaming a field in a structure array
732 Solvers
267 Solvers
Area of an equilateral triangle
2763 Solvers
276 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!