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))
in_cell =
2×4 cell array
'hello' 'basic' 'test' 'case'
' ' ' ' ' ' ' '
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))
in_cell =
2×7 cell array
'this' 'one' '' 'has' ' ' 'some tricky' 'stuff'
' ' ' ' ' ' ' ' ' ' ' ' ' '
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))
in_cell =
2×5 cell array
'delimiters' 'are' 'not' 'always' 'spaces'
'?' '?' '?' '?' '?'
out_str =
'delimiters?are?not?always?spaces'
|
Find the sum of all the numbers of the input vector
31954 Solvers
Given two strings, find the maximum overlap
461 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
Convert given decimal number to binary number.
636 Solvers
Deleting an element in a matrix
325 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!