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 =
[]
out_str =
'hello'
out_str =
'hello basic'
out_str =
'hello basic test'
out_str =
'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))
out_str =
[]
out_str =
'this'
out_str =
'this one'
out_str =
'this one '
out_str =
'this one has'
out_str =
'this one has '
out_str =
'this one has some tricky'
out_str =
'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))
out_str =
[]
out_str =
'delimiters'
out_str =
'delimiters?are'
out_str =
'delimiters?are?not'
out_str =
'delimiters?are?not?always'
out_str =
'delimiters?are?not?always?spaces'
|
1787 Solvers
Remove the polynomials that have positive real elements of their roots.
448 Solvers
Choose the best fitting dominoes
161 Solvers
Who is the smartest MATLAB programmer?
469 Solvers
264 Solvers